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

48 lines
1.2 KiB
YAML
Raw Normal View History

2021-04-10 18:58:50 +01:00
name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
2022-09-15 22:44:57 +01:00
schedule:
- cron: '10 6 * * *'
2021-04-10 18:58:50 +01:00
env:
CARGO_TERM_COLOR: always
jobs:
build:
2022-08-02 23:04:25 +01:00
name: Just CI
2021-04-11 01:25:48 +01:00
runs-on: ubuntu-20.04
2021-04-10 19:03:55 +01:00
steps:
2021-04-10 18:58:50 +01:00
- name: Install build tools
2023-04-30 18:18:30 +01:00
run: sudo apt-get update && sudo apt-get install build-essential libelf-dev zip -y
2023-04-23 17:46:00 +01:00
- name: Install Miri
run: |
rustup toolchain install nightly --component miri
rustup override set nightly
cargo miri setup
2022-03-01 20:05:55 +00:00
- uses: actions/checkout@v3
2021-04-10 18:58:50 +01:00
- name: Cache
uses: actions/cache@v3
2021-04-10 18:58:50 +01:00
with:
path: |
~/.cargo/registry
~/.cargo/git
2021-05-30 20:14:11 +01:00
~/target
2022-02-22 23:21:53 +00:00
mgba-test-runner/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
2022-02-22 23:21:53 +00:00
- name: Set CARGO_TARGET_DIR
run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV
- uses: extractions/setup-just@v1
2022-03-05 20:58:15 +00:00
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: '0.4.13'
- name: Build and test all crates
run: just ci