We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98adc73 commit 6dd7699Copy full SHA for 6dd7699
.cirrus.yml
@@ -1,9 +1,25 @@
1
-freebsd_instance:
2
- image_family: freebsd-13-1
3
-
4
task:
+ name: FreeBSD
+ freebsd_instance:
+ image_family: freebsd-13-1
5
install_script: pkg install -y ghc hs-cabal-install git autoconf
6
script:
7
- cabal update
8
- autoreconf -i
9
- cabal test --test-show-details=direct
10
+
11
+task:
12
+ name: OpenBSD
13
+ compute_engine_instance:
14
+ image_project: pg-ci-images
15
+ image: family/pg-ci-openbsd-vanilla-7-2
16
+ platform: openbsd
17
+ install_script: pkg_add ghc cabal-install git autoconf-2.71
18
+ script:
19
+ - export AUTOCONF_VERSION=2.71
20
+ - export CABAL_DIR=/tmp/.cabal
21
+ - ghc --version
22
+ - cabal --version
23
+ - cabal update
24
+ - autoreconf -i
25
+ - cabal test --test-show-details=direct
0 commit comments