-
Notifications
You must be signed in to change notification settings - Fork 4
/
.cirrus.yml
40 lines (38 loc) · 1.08 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
task:
name: FreeBSD
freebsd_instance:
image_family: freebsd-14-0
install_script: pkg install -y ghc hs-cabal-install git autoconf
script:
- cabal update
- cabal test --test-show-details=direct
task:
name: OpenBSD
compute_engine_instance:
image_project: pg-ci-images
image: family/pg-ci-openbsd-vanilla-7-3
platform: openbsd
install_script: pkg_add ghc cabal-install git autoconf-2.71
script:
- export AUTOCONF_VERSION=2.71
- export CABAL_DIR=/tmp/.cabal
- ghc --version
- cabal --version
- cabal update
- cabal test --test-show-details=direct
task:
name: NetBSD
compute_engine_instance:
image_project: pg-ci-images
image: family/pg-ci-netbsd-vanilla-10-0
platform: netbsd
install_script:
- export PKG_PATH="http://cdn.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname -p)/$(uname -r|cut -f '1 2' -d.)/All/"
- echo $PKG_PATH
- pkg_add ghc cabal-install git autoconf
script:
- export CABAL_DIR=/tmp/.cabal
- ghc --version
- cabal --version
- cabal update
- cabal test --test-show-details=direct