Add fallback LEADOUT_TRACK_NUMBER = 0xAA for non Win/Mac/Linux #106
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: | |
branches: [ master ] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: configure | |
run: cmake . | |
- name: build | |
run: cmake --build . --config Release | |
asan: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: configure | |
run: cmake -DASAN=on -DCMAKE_BUILD_TYPE=Debug . | |
- name: build | |
run: cmake --build . | |
- name: test | |
run: tests/test.sh |