Implement VRAM address translation #104
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: 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: Run tests | |
run: cargo test --verbose | |
- name: Generate code coverage | |
run: cargo llvm-cov --all-features --workspace --codecov --output-path codecov.json | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: codecov.json | |
fail_ci_if_error: true | |