catch exception in getMaxNumOfCBoxes to allow the fall-back perf API … #184
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: FreeBSD clang-scan build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: clang scan build in FreeBSD VM | |
id: clang-scan-build | |
uses: vmactions/freebsd-vm@v0 | |
with: | |
usesh: true | |
prepare: | | |
pkg install -y curl gmake cmake devel/llvm llvm | |
run: | | |
pwd | |
ls -lah | |
whoami | |
env | |
freebsd-version | |
scan-build cmake -B build -DCMAKE_INSTALL_PREFIX=. | |
cd build | |
scan-build --exclude src/simdjson --status-bugs gmake |