bench against libb2 #886
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: Sanitizer Builds | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
paths-ignore: | |
- .gitignore | |
- CLA.md | |
- CODE_OF_CONDUCT.md | |
- CONTRIBUTING.md | |
- cpu-features.md | |
- LICENSE | |
- LICENSE-APACHE | |
- README.md | |
workflow_dispatch: | |
merge_group: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
linux: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
compiler: [ clang ] | |
bits: [ 32, 64 ] | |
edition: [ "" ] # ignore c89 for now | |
#edition: [ c89, "" ] | |
steps: | |
- name: Setup | Update | |
run: sudo apt-get update | |
- name: Setup | Install Ninja | |
run: sudo apt-get install ninja-build | |
- name: Setup | Install multilib libraries | |
if: ${{ matrix.bits == 32 }} | |
run: sudo apt-get install gcc-multilib g++-multilib | |
- name: Setup Clang | |
if: ${{ matrix.compiler == 'clang' }} | |
run: | | |
echo "CC=clang" >> $GITHUB_ENV | |
echo "CXX=clang++" >> $GITHUB_ENV | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: mach | Test | |
uses: ./.github/actions/mach_test | |
with: | |
bits: ${{ matrix.bits }} | |
edition: ${{ matrix.edition }} | |
args: -s ubsan,asan | |
- name: Upload artifacts | |
uses: ./.github/actions/upload_artifacts | |
with: | |
name: linux_${{ matrix.compiler }}_${{ matrix.bits }}_${{ matrix.edition }} |