agb/.github/workflows/build-and-test.yml

41 lines
1 KiB
YAML
Raw Normal View History

2021-04-11 03:58:50 +10:00
name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
2021-04-11 10:25:48 +10:00
runs-on: ubuntu-20.04
2021-04-11 04:03:55 +10:00
steps:
2021-04-11 03:58:50 +10:00
- name: Install build tools
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi libelf-dev zip -y
2022-03-02 07:05:55 +11:00
- uses: actions/checkout@v3
2021-04-11 03:58:50 +10:00
- name: Cache
2022-05-31 20:13:46 +10:00
uses: actions/cache@v3.0.3
2021-04-11 03:58:50 +10:00
with:
path: |
~/.cargo/registry
~/.cargo/git
2021-05-31 05:14:11 +10:00
~/target
2022-02-23 10:21:53 +11:00
mgba-test-runner/target
2021-05-23 11:25:08 +10:00
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
2021-04-11 03:58:50 +10:00
- name: install mgba-test-runner
2021-07-04 07:53:49 +10:00
run: cargo install --path mgba-test-runner --verbose
2022-02-23 10:21:53 +11:00
- name: Set CARGO_TARGET_DIR
run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV
2022-01-01 23:27:46 +11:00
- name: Install gbafix
run: cargo install gbafix
- uses: extractions/setup-just@v1
2022-03-06 07:58:15 +11:00
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: '0.4.13'
- name: Build and test all crates
run: just ci