Skip to content

Commit

Permalink
Merge pull request #418 from opcm/staging
Browse files Browse the repository at this point in the history
merge staging branch
  • Loading branch information
opcm authored Aug 1, 2022
2 parents 4fff354 + 1b86602 commit 053473b
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
freebsd_instance:
image_family: freebsd-12-1
image_family: freebsd-13-1

task:
install_script: pkg install -y gmake cmake
name: compilation (FreeBSD)
install_script: pkg install -y gmake cmake git
script:
- cd src
- git clone https://github.com/simdjson/simdjson.git
- cd ..
- cmake -B build -DCMAKE_INSTALL_PREFIX=.
- cd build && gmake install

task:
name: clang-scan (FreeBSD)
install_script: pkg install -y gmake cmake git devel/llvm llvm
script:
- cd src
- git clone https://github.com/simdjson/simdjson.git
- cd ..
- scan-build cmake -B build -DCMAKE_INSTALL_PREFIX=.
- cd build
- scan-build --exclude src/simdjson --status-bugs gmake install

0 comments on commit 053473b

Please sign in to comment.