-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.cirrus.yml
39 lines (36 loc) · 990 Bytes
/
.cirrus.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
linux_amd64_task:
container:
image: alpine:latest
test_script:
- apk add alpine-sdk bison libretls-dev libevent-dev readline-dev autoconf automake
- ./autogen.sh
- ./configure
- make
- make SUDO=env test
linux_arm_task:
container:
image: alpine:latest
test_script:
- apk add alpine-sdk bison libretls-dev libevent-dev readline-dev autoconf automake
- ./autogen.sh
- ./configure
- make
- make SUDO=env test
freebsd_14_task:
freebsd_instance:
image_family: freebsd-14-0
install_script: pkg install -y libevent libressl pkgconf autoconf automake
script:
- ./autogen.sh
- ./configure
- make
- make SUDO=env test
mac_task:
macos_instance:
image: ghcr.io/cirruslabs/macos-runner:sonoma
test_script:
- brew install libevent openssl libretls autoconf automake pkg-config
- ./autogen.sh
- PKG_CONFIG_PATH="$(brew --prefix openssl)/lib/pkgconfig" ./configure
- make
- make SUDO=env test