2020-04-02 12:29:45 +00:00
|
|
|
# https://cirrus-ci.org/examples/
|
|
|
|
# https://github.com/curl/curl/blob/master/.cirrus.yml
|
|
|
|
|
2020-07-08 01:03:19 +00:00
|
|
|
# FreeBSD seems to have constant version problems, which requires IGNORE_OSVERSION.
|
|
|
|
|
2020-04-02 12:29:45 +00:00
|
|
|
env:
|
|
|
|
CIRRUS_CLONE_DEPTH: 5
|
2020-07-08 01:03:19 +00:00
|
|
|
IGNORE_OSVERSION: yes
|
2020-04-02 12:29:45 +00:00
|
|
|
|
|
|
|
task:
|
|
|
|
matrix:
|
|
|
|
- name: Debug build, FreeBSD 12.1
|
|
|
|
freebsd_instance:
|
|
|
|
image_family: freebsd-12-1
|
|
|
|
pkginstall_script:
|
|
|
|
- pkg update -f
|
|
|
|
- pkg install -y gmake
|
|
|
|
configure_script:
|
|
|
|
compile_script:
|
|
|
|
- CXXFLAGS="-DDEBUG -g3 -O0" gmake -j 3
|
|
|
|
test_script:
|
|
|
|
- ./cryptest.exe v
|
|
|
|
- ./cryptest.exe tv all
|
|
|
|
- name: Release build, FreeBSD 12.1
|
|
|
|
freebsd_instance:
|
|
|
|
image_family: freebsd-12-1
|
|
|
|
pkginstall_script:
|
|
|
|
- pkg update -f
|
|
|
|
- pkg install -y gmake
|
|
|
|
configure_script:
|
|
|
|
compile_script:
|
|
|
|
- gmake -j 3
|
|
|
|
test_script:
|
|
|
|
- ./cryptest.exe v
|
|
|
|
- ./cryptest.exe tv all
|
|
|
|
- name: Debug build, FreeBSD 13.0 (snap)
|
|
|
|
freebsd_instance:
|
|
|
|
image_family: freebsd-13-0-snap
|
|
|
|
pkginstall_script:
|
|
|
|
- pkg update -f
|
|
|
|
- pkg install -y gmake
|
|
|
|
configure_script:
|
|
|
|
compile_script:
|
|
|
|
- CXXFLAGS="-DDEBUG -g3 -O0" gmake -j 3
|
|
|
|
test_script:
|
|
|
|
- ./cryptest.exe v
|
|
|
|
- ./cryptest.exe tv all
|
|
|
|
- name: Release build, FreeBSD 13.0 (snap)
|
|
|
|
freebsd_instance:
|
|
|
|
image_family: freebsd-13-0-snap
|
|
|
|
pkginstall_script:
|
|
|
|
- pkg update -f
|
|
|
|
- pkg install -y gmake
|
|
|
|
configure_script:
|
|
|
|
compile_script:
|
|
|
|
- gmake -j 3
|
|
|
|
test_script:
|
|
|
|
- ./cryptest.exe v
|
|
|
|
- ./cryptest.exe tv all
|