agb/.github/workflows/rust.yml

47 lines
1.3 KiB
YAML
Raw Normal View History

2021-04-10 18:58:50 +01:00
name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
2021-04-11 01:25:48 +01:00
runs-on: ubuntu-20.04
2021-04-10 19:03:55 +01:00
steps:
2021-05-30 21:02:11 +01:00
- name: Set CARGO_TARGET_DIR
run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV
2021-04-10 18:58:50 +01:00
- name: Install build tools
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi libelf-dev -y
2021-04-10 18:58:50 +01:00
- uses: actions/checkout@v2
- name: Cache
2021-06-20 22:39:32 +00:00
uses: actions/cache@v2.1.6
2021-04-10 18:58:50 +01:00
with:
path: |
~/.cargo/registry
~/.cargo/git
2021-05-30 20:14:11 +01:00
~/target
2021-05-23 02:25:08 +01:00
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
2021-04-10 18:58:50 +01:00
- name: install mgba-test-runner
2021-07-03 22:53:49 +01:00
run: cargo install --path mgba-test-runner --verbose
- name: Build agb library
working-directory: agb
2021-04-10 18:58:50 +01:00
run: cargo build --verbose
- name: Run Clippy on agb
working-directory: agb
2021-04-11 16:37:23 +01:00
run: cargo clippy --verbose
2021-04-20 22:58:26 +01:00
- name: Run Clippy on agb image converter
working-directory: agb-image-converter
run: cargo clippy --verbose
- name: Run Tests for agb in debug mode
working-directory: agb
2021-04-13 22:37:58 +01:00
run: cargo test --verbose
- name: Run Tests for agb in release mode
working-directory: agb
run: cargo test --verbose --release
2021-04-11 02:40:52 +01:00