Blame

Date:
Mon Oct 4 10:05:34 2021 UTC
Message:
add .cirrus.yml Add a cirrus CI config file that runs the regression suite on linux amd64/aarch64 and on freebsd.

01
2021-10-04
op
linux_amd64_task:
02
2021-10-04
op
container:
03
2021-10-04
op
image: alpine:latest
04
2021-10-04
op
test_script:
05
2021-10-04
op
- apk add alpine-sdk linux-headers bison libretls-dev libevent-dev
06
2021-10-04
op
- ./configure
07
2021-10-04
op
- make
08
2021-10-04
op
- make regress
09
2021-10-04
op
10
2021-10-04
op
linux_arm_task:
11
2021-10-04
op
arm_container:
12
2021-10-04
op
image: alpine:latest
13
2021-10-04
op
test_script:
14
2021-10-04
op
- apk add alpine-sdk linux-headers bison libretls-dev libevent-dev
15
2021-10-04
op
- ./configure
16
2021-10-04
op
- make
17
2021-10-04
op
- make regress
18
2021-10-04
op
19
2021-10-04
op
freebsd_13_task:
20
2021-10-04
op
freebsd_instance:
21
2021-10-04
op
image_family: freebsd-13-0
22
2021-10-04
op
test_script:
23
2021-10-04
op
- pkg install -y libevent libressl pkgconf
24
2021-10-04
op
- ./configure
25
2021-10-04
op
- make
26
2021-10-04
op
- make regress