-
Notifications
You must be signed in to change notification settings - Fork 480
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #418 from opcm/staging
merge staging branch
- Loading branch information
Showing
1 changed file
with
17 additions
and
2 deletions.
There are no files selected for viewing
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
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 |