CI: Use Cirrus CI for FreeBSD builds

This commit is contained in:
Peter Keresztes Schmidt
2021-02-27 21:14:02 +01:00
parent ae3d1eca54
commit 2cbcebb7be

22
.cirrus.yml Normal file
View File

@@ -0,0 +1,22 @@
task:
name: freebsd-build
freebsd_instance:
image_family: freebsd-12-2
prepare_script:
- pkg install -yq git cmake jpeg-turbo mysql80-client ffmpeg libvncserver libjwt catch p5-DBI p5-DBD-mysql p5-Date-Manip p5-Test-LWP-UserAgent p5-Sys-Mmap
configure_script:
- git submodule update --init --recursive
- mkdir build
- cd build
- cmake ../ -DBUILD_MAN=0 -DBUILD_TEST_SUITE=1
build_script:
- cd build
- make -j3
- make install
test_script:
- cd build
- make test