-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (33 loc) · 1003 Bytes
/
build_test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Build and test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update package repos
run: sudo apt-get -y update
- name: Install prerequisites
run: sudo apt-get -y install libsdl2-dev
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Fetch submodules
run: git submodule update --init --recursive
- name: Checkout siena_tests
run: git clone --recurse-submodules https://github.com/twvd/siena_tests.git ../siena_tests
- name: Code formatting check
run: cargo fmt --check
- name: Build
run: cargo build --verbose
- name: Build release
run: cargo build --verbose --release
- name: Build release, Blargg S-APU
run: cargo build --verbose --release -F apu_blargg
- name: Run tests
run: cargo test --verbose