-
Notifications
You must be signed in to change notification settings - Fork 1
/
.cirrus.yml
50 lines (50 loc) · 1.12 KB
/
.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
40
41
42
43
44
45
46
47
48
49
50
alpine_task:
container:
image: alpine
setup_script:
- apk update
- apk add build-base linux-headers
compile_script: ./build.sh
test_script: ./test_shared
archlinux_task:
container:
image: archlinux/base
setup_script:
- pacman --noconfirm -Sy
- pacman --noconfirm -S gcc
compile_script: ./build.sh
test_script: ./test_shared
centos_task:
container:
image: centos
setup_script:
- yum update -y
- yum install -y gcc glibc-devel kernel-headers
compile_script: ./build.sh
test_script: ./test_shared
debian_task:
container:
image: debian
setup_script:
- apt update
- apt install -y gcc libc-dev linux-headers-amd64
compile_script: ./build.sh
test_script: ./test_shared
ubuntu_task:
container:
image: ubuntu
setup_script:
- apt update
- apt install -y gcc libc-dev
compile_script: ./build.sh
test_script: ./test_shared
freebsd_task:
freebsd_instance:
image_family: freebsd-12-1
compile_script: ./build.sh
test_script: ./test_shared
macos_task:
osx_instance:
image: mojave-base
compile_script: ./build.sh
test_script: ./test_shared