-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.cirrus.yml
41 lines (38 loc) · 918 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
40
build_linux_x86_64_task:
container:
dockerfile: ci/Dockerfile
autotools_script:
- aclocal
- autoconf
- autoheader
- automake --add-missing
configure_script:
- ./configure
make_script:
- make
build_linux_i386_task:
container:
dockerfile: ci/Dockerfile
autotools_script:
- aclocal
- autoconf
- autoheader
- automake --add-missing
configure_script:
- CFLAGS="-m32" ./configure
make_script:
- make
build_freebsd_x86_64_task:
freebsd_instance:
image_family: freebsd-13-3
install_script:
- pkg install -y autoconf automake gmake libX11 libXpm docbook-xsl libxslt
autotools_script:
- aclocal
- autoconf
- autoheader
- automake --add-missing
configure_script:
- ./configure
make_script:
- gmake