ci: also run regression tests on macos #644
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: fuzzer | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04] | |
cc: [clang-15] | |
sanitizer: [asan] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Dependencies | |
env: | |
CC: ${{ matrix.cc }} | |
run: | | |
sudo apt -q update | |
sudo apt install -q -y autoconf automake libtool pkg-config \ | |
libpam-dev libz-dev libudev-dev libpcsclite-dev | |
sudo apt install -q -y ${CC%-*}-tools-${CC#clang-} | |
- name: Fuzz | |
env: | |
CC: ${{ matrix.cc }} | |
SANITIZER: ${{ matrix.sanitizer }} | |
run: | | |
./build-aux/ci/fuzz-linux-${SANITIZER}.sh |