2020-04-23 05:05:50 +08:00
|
|
|
task:
|
|
|
|
timeout_in: 120m
|
|
|
|
freebsd_instance:
|
|
|
|
matrix:
|
|
|
|
- image_family: freebsd-13-0-snap
|
2020-04-23 05:22:32 +08:00
|
|
|
|
2020-04-23 05:05:50 +08:00
|
|
|
env:
|
|
|
|
ASSUME_ALWAYS_YES: YES
|
|
|
|
setup_script:
|
|
|
|
- pkg update -f
|
|
|
|
- pkg install bash
|
2020-04-23 05:17:50 +08:00
|
|
|
- pkg install cmake
|
2020-04-23 05:22:32 +08:00
|
|
|
- pkg install git
|
2020-04-23 05:05:50 +08:00
|
|
|
build_script:
|
2020-04-23 05:55:28 +08:00
|
|
|
- ls /tmp/cirrus-ci-build/
|
2020-04-23 05:05:50 +08:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- cmake ..
|
2020-04-23 05:55:28 +08:00
|
|
|
- ls /tmp/cirrus-ci-build/
|
|
|
|
- ls /tmp/cirrus-ci-build/build/singleheader
|
2020-04-23 05:30:19 +08:00
|
|
|
- make VERBOSE=1
|
2020-04-23 05:05:50 +08:00
|
|
|
test_script:
|
2020-04-23 05:30:19 +08:00
|
|
|
- ctest --extra-verbose
|