agb/.github/workflows/rust.yml

49 lines
1.4 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
2021-04-11 10:25:48 +10:00
run: sudo apt-get update && sudo apt-get install xvfb build-essential binutils-arm-none-eabi pulseaudio -y
- name: Install mgba 0.9
run: |
curl -L https://github.com/mgba-emu/mgba/releases/download/0.9.0/mGBA-0.9.0-ubuntu64-focal.tar.xz -o mgba.tar.xz && \
tar -xf mgba.tar.xz && \
2021-04-11 10:34:58 +10:00
sudo apt-get install libzip5 ./mGBA-0.9.0-ubuntu64-focal/* -y && \
2021-04-11 10:25:48 +10:00
rm -rf mgba.tar.xz mGBA-0.9.0-ubuntu64-focal
2021-04-11 03:58:50 +10:00
- uses: actions/checkout@v2
- name: Nightly rust with required components
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy, rust-src
2021-04-11 07:40:19 +10:00
override: true
2021-04-11 03:58:50 +10:00
- name: Cache
uses: actions/cache@v2.1.1
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-${{ steps.rust_install.outputs.rustc_hash }}
- name: install mgba-test-runner
run: cargo install --git https://github.com/corwinkuiper/mgba-test-runner.git
2021-04-11 03:58:50 +10:00
- name: Build
run: cargo build --verbose
2021-04-12 01:37:23 +10:00
- name: Run Clippy
run: cargo clippy --verbose
- name: Run Tests
2021-04-11 09:41:09 +10:00
run: pulseaudio -D && cargo test --verbose
2021-04-11 11:40:52 +10:00