Adding cirrus

This commit is contained in:
Daniel Lemire 2020-10-19 21:20:49 -04:00
parent 8a43fdb6a1
commit 6283ef48b1

22
.cirrus.yml Normal file
View File

@ -0,0 +1,22 @@
task:
timeout_in: 120m
freebsd_instance:
matrix:
- image_family: freebsd-13-0-snap
env:
ASSUME_ALWAYS_YES: YES
setup_script:
- pkg update -f
- pkg install bash
- pkg install cmake
- pkg install git
build_script:
- mkdir build
- cd build
- cmake -DFASTFLOAT_TEST=ON ..
- make
test_script:
- cd build
- ctest --output-on-failure -R basictest