1.15.0 #107
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [main, staging, trying] | |
pull_request: | |
branches: [main] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
all-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run disassembler test suite | |
run: cargo test --lib | |
# one test at a time because rustup does not handle well concurrency | |
- name: Run firmware tests | |
run: cargo test --test firmware -- --test-threads 1 | |
# Refs: https://github.com/rust-lang/crater/blob/9ab6f9697c901c4a44025cf0a39b73ad5b37d198/.github/workflows/bors.yml#L125-L149 | |
# bors.tech integration | |
ci-success: | |
name: CI | |
if: ${{ success() }} | |
needs: | |
- all-tests | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: CI succeeded | |
run: exit 0 |