(lib/printer/sprint_register) warn on unknown register name #31
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: | |
- master | |
# pull_request: {} | |
# cancel in-progress job when a new push is performed | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
matrix: | |
# version: [4.12.0, 4.14.1] | |
version: [4.14.1] | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: System dependencies (ubuntu) | |
run: | | |
sudo apt update | |
sudo apt install build-essential gcc-aarch64-linux-gnu qemu-system-aarch64 | |
- name: Build harness | |
run: | | |
make build | |
- name: Check for compiler warnings | |
run: | | |
make -B -s check | |
- name: Run unittests | |
run: | | |
./qemu_unittests --no-test-linear-concretization | tee log | |
[ $(tail -c -2 log) -eq 0 ] |