2021-04-11 03:58:50 +10:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
2022-09-16 07:44:57 +10:00
|
|
|
schedule:
|
2023-06-26 01:07:59 +10:00
|
|
|
- cron: '10 6 * * *'
|
2021-04-11 03:58:50 +10:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-08-03 08:04:25 +10:00
|
|
|
name: Just CI
|
2023-08-13 20:36:09 +10:00
|
|
|
runs-on: ubuntu-22.04
|
2021-04-11 04:03:55 +10:00
|
|
|
steps:
|
2023-08-05 22:11:06 +10:00
|
|
|
- name: Set CARGO_TARGET_DIR
|
|
|
|
run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV
|
2021-04-11 03:58:50 +10:00
|
|
|
- name: Install build tools
|
2023-05-01 03:18:30 +10:00
|
|
|
run: sudo apt-get update && sudo apt-get install build-essential libelf-dev zip -y
|
2023-04-24 02:46:00 +10:00
|
|
|
- name: Install Miri
|
|
|
|
run: |
|
2023-04-24 03:06:52 +10:00
|
|
|
rustup toolchain install nightly --component miri
|
2023-04-24 03:08:59 +10:00
|
|
|
rustup override set nightly
|
2023-04-24 03:06:52 +10:00
|
|
|
cargo miri setup
|
2022-03-02 07:05:55 +11:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-11 03:58:50 +10:00
|
|
|
- name: Cache
|
2022-07-15 07:58:32 +10:00
|
|
|
uses: actions/cache@v3
|
2021-04-11 03:58:50 +10:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
2021-05-31 05:14:11 +10:00
|
|
|
~/target
|
2021-05-23 11:25:08 +10:00
|
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
2021-04-11 07:32:02 +10:00
|
|
|
- name: install mgba-test-runner
|
2023-08-05 21:16:52 +10:00
|
|
|
run: cargo install --path emulator/test-runner --verbose
|
2022-02-25 08:32:11 +11:00
|
|
|
- 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'
|
2022-01-13 09:42:55 +11:00
|
|
|
- name: Build and test all crates
|
2023-06-26 01:07:59 +10:00
|
|
|
run: just ci
|
2023-08-06 20:10:56 +10:00
|
|
|
- name: Upload build artifacts
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: example-games
|
|
|
|
path: ~/target/*.gba
|