Push 2024 07 10 2 #481
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 ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
submodules: recursive | |
- name: clang scan build in FreeBSD VM | |
id: clang-scan-build | |
uses: cross-platform-actions/action@a4a7327f8112bc2513a07701786a0c3c1193583a # v0.23.0 | |
with: | |
memory: 2048 | |
shell: sh | |
operating_system: freebsd | |
version: '13.2' | |
run: | | |
sudo pkg install -y curl gmake cmake devel/llvm llvm | |
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 |