We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68f4f0b commit 5d109f3Copy full SHA for 5d109f3
.github/workflows/freebsd_scan_build.yml
@@ -0,0 +1,34 @@
1
+name: FreeBSD clang-scan build
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: macos-12
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ with:
17
+ submodules: recursive
18
+ - name: clang scan build in FreeBSD VM
19
+ id: clang-scan-build
20
+ uses: vmactions/freebsd-vm@v0
21
22
+ usesh: true
23
+ prepare: |
24
+ pkg install -y curl gmake cmake devel/llvm llvm
25
26
+ run: |
27
+ pwd
28
+ ls -lah
29
+ whoami
30
+ env
31
+ freebsd-version
32
+ scan-build cmake -B build -DCMAKE_INSTALL_PREFIX=.
33
+ cd build
34
+ scan-build --exclude src/simdjson --status-bugs gmake -j
0 commit comments