From 568419b2c1f71620095acd9bf3be6aaa2bbe43ee Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Mon, 4 Oct 2021 10:05:34 +0000 Subject: [PATCH] add .cirrus.yml Add a cirrus CI config file that runs the regression suite on linux amd64/aarch64 and on freebsd. --- .cirrus.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .cirrus.yml diff --git a/.cirrus.yml b/.cirrus.yml new file mode 100644 index 0000000..261a14a --- /dev/null +++ b/.cirrus.yml @@ -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