21 lines
386 B
YAML
21 lines
386 B
YAML
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 ..
|
|
- make
|
|
test_script:
|
|
- cd build
|
|
- ctest --output-on-failure -E checkperf |