forked from bstansell/conserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cirrus.yml
48 lines (45 loc) · 1.19 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
env:
CIRRUS_CLONE_DEPTH: 1
freebsd_13_task:
freebsd_instance:
image_family: freebsd-13-0
install_script:
- pkg install -y autoconf automake
- ./package/setup-configure
basic_script: &basic
- "[ -f Makefile ] && make distclean"
- ./configure || { cat config.log; exit 1; }
- make
- make test
uds_script: &uds
- "[ -f Makefile ] && make distclean"
- ./configure --with-trust-uds-cred --with-uds || { cat config.log; exit 1; }
- make
- make test
pam_ssl_script: &pamssl
- "[ -f Makefile ] && make distclean"
- ./configure --with-pam --with-openssl || { cat config.log; exit 1; }
- make
- make test
gssapi_script: &gssapi
- "[ -f Makefile ] && make distclean"
- ./configure --with-gssapi || { cat config.log; exit 1; }
- make
- make test
linux_gcc_task:
container:
image: gcc:latest
install_script:
- ./package/setup-configure
basic_script: *basic
uds_script: *uds
pam_ssl_script: *pamssl
#macos_task:
# osx_instance:
# image: mojave-xcode-10.1
# install_script:
# - brew install autoconf automake
# - ./package/setup-configure
# basic_script: *basic
# uds_script: *uds
# pam_ssl_script: *pamssl