add .cirrus.yml

Add a cirrus CI config file that runs the regression suite on linux
amd64/aarch64 and on freebsd.
This commit is contained in:
Omar Polo 2021-10-04 10:05:34 +00:00
parent 6e0f14d51e
commit 568419b2c1
1 changed files with 26 additions and 0 deletions

26
.cirrus.yml Normal file
View File

@ -0,0 +1,26 @@
linux_amd64_task:
container:
image: alpine:latest
test_script:
- apk add alpine-sdk linux-headers bison libretls-dev libevent-dev
- ./configure
- make
- make regress
linux_arm_task:
arm_container:
image: alpine:latest
test_script:
- apk add alpine-sdk linux-headers bison libretls-dev libevent-dev
- ./configure
- make
- make regress
freebsd_13_task:
freebsd_instance:
image_family: freebsd-13-0
test_script:
- pkg install -y libevent libressl pkgconf
- ./configure
- make
- make regress