Issue #135: ARM64 disassembler was 4 bytes off for b and bl instructi… #352
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, pull_request] | |
jobs: | |
build: | |
name: ${{ matrix.config.name }} | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- { | |
name: "Windows Latest Mingw", | |
os: "windows-latest", | |
cc: "gcc", | |
cxx: "g++", | |
runtests: false | |
} | |
- { | |
name: "Ubuntu Latest GCC", | |
os: "ubuntu-latest", | |
cc: "gcc", | |
cxx: "g++", | |
runtests: true | |
} | |
- { | |
name: "MacOS Latest Clang", | |
os: "macos-latest", | |
cc: "clang", | |
cxx: "clang++", | |
runtests: true | |
} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update apt (Ubuntu only) | |
if: startsWith(matrix.config.os, 'ubuntu') | |
run: sudo apt update | |
- name: Configure | |
shell: bash | |
run: ./configure | |
- name: Make | |
shell: bash | |
run: make | |
- name: Tests | |
if: matrix.config.runtests == true | |
shell: bash | |
run: make tests |