Bump actions/cache from 4.0.1 to 4.1.0 #543
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: 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@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
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 |