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-05-31 06:02:11 +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
|
2021-04-14 07:37:58 +10:00
|
|
|
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi -y
|
2021-04-11 10:25:48 +10:00
|
|
|
- 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-14 07:40:43 +10:00
|
|
|
sudo apt-get install libzip5 ./mGBA-0.9.0-ubuntu64-focal/libmgba.deb -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: Cache
|
|
|
|
uses: actions/cache@v2.1.1
|
|
|
|
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 03:58:50 +10:00
|
|
|
|
2021-04-11 07:32:02 +10:00
|
|
|
- name: install mgba-test-runner
|
2021-04-20 07:26:03 +10:00
|
|
|
run: cargo install --path mgba-test-runner
|
|
|
|
- name: Build agb library
|
|
|
|
working-directory: agb
|
2021-04-11 03:58:50 +10:00
|
|
|
run: cargo build --verbose
|
2021-04-20 07:26:03 +10:00
|
|
|
- name: Run Clippy on agb
|
|
|
|
working-directory: agb
|
2021-04-12 01:37:23 +10:00
|
|
|
run: cargo clippy --verbose
|
2021-04-21 07:58:26 +10:00
|
|
|
- name: Run Clippy on agb image converter
|
|
|
|
working-directory: agb-image-converter
|
|
|
|
run: cargo clippy --verbose
|
2021-04-20 07:26:03 +10:00
|
|
|
- name: Run Tests for agb
|
|
|
|
working-directory: agb
|
2021-04-14 07:37:58 +10:00
|
|
|
run: cargo test --verbose
|
2021-04-11 11:40:52 +10:00
|
|
|
|