-
Notifications
You must be signed in to change notification settings - Fork 3
/
.cirrus.yml
32 lines (28 loc) · 959 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
#got_linux_task:
# container:
# image: gcc:latest
#before_build_script: .github/ci/before-install.sh
#build:script: .github/ci/build.sh
got_ubuntu_task:
container:
image: ubuntu:latest
before_build_script: .github/ci/before-install.sh
build:script: .github/ci/build.sh
test_script: make install && make tests
got_alpine_linux_task:
container:
image: alpine:latest
script:
- apk add libevent-dev git build-base bsd-compat-headers bison automake make autoconf libbsd-dev util-linux-dev libressl-dev zlib-dev ncurses-dev
- .github/ci/build.sh
got_freebsd_task:
freebsd_instance:
image_family: freebsd-14-0
before_build_script: .github/ci/before-install.sh
build:script: .github/ci/build.sh
test_script: make install && make tests
got_macos_task:
macos_instance:
image: ghcr.io/cirruslabs/macos-ventura-base:latest
before_build_script: .github/ci/before-install.sh
build:script: .github/ci/build.sh