ext-cryptopp/.cirrus.yml

60 lines
1.6 KiB
YAML
Raw Permalink Normal View History

2020-04-02 08:29:45 -04:00
# https://cirrus-ci.org/examples/
# https://github.com/curl/curl/blob/master/.cirrus.yml
2020-07-07 21:03:19 -04:00
# FreeBSD seems to have constant version problems, which requires IGNORE_OSVERSION.
2020-04-02 08:29:45 -04:00
env:
CIRRUS_CLONE_DEPTH: 5
2020-07-07 21:03:19 -04:00
IGNORE_OSVERSION: yes
2020-04-02 08:29:45 -04:00
task:
matrix:
- name: Debug build, FreeBSD 13.2
2020-04-02 08:29:45 -04:00
freebsd_instance:
image_family: freebsd-13-2
2020-04-02 08:29:45 -04:00
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.2
2020-04-02 08:29:45 -04:00
freebsd_instance:
image_family: freebsd-13-2
2020-04-02 08:29:45 -04:00
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
2022-12-22 03:59:58 -05:00
- name: Debug build, FreeBSD 14.0 (snap)
2020-04-02 08:29:45 -04:00
freebsd_instance:
2022-12-22 03:59:58 -05:00
image_family: freebsd-14-0-snap
2020-04-02 08:29:45 -04:00
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
2022-12-22 03:59:58 -05:00
- name: Release build, FreeBSD 14.0 (snap)
2020-04-02 08:29:45 -04:00
freebsd_instance:
2022-12-22 03:59:58 -05:00
image_family: freebsd-14-0-snap
2020-04-02 08:29:45 -04:00
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