File tree 1 file changed +23
-0
lines changed 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 12
12
name : OpenBSD
13
13
compute_engine_instance :
14
14
image_project : pg-ci-images
15
+ # OpenBSD version should match
16
+ # https://github.com/anarazel/pg-vm-images/blob/main/packer/openbsd.pkrvars.hcl
15
17
image : family/pg-ci-openbsd-vanilla-7-2
16
18
platform : openbsd
17
19
install_script : pkg_add ghc cabal-install git autoconf-2.71
24
26
- autoreconf -i
25
27
- cabal test --test-show-details=direct
26
28
29
+ task :
30
+ name : NetBSD
31
+ compute_engine_instance :
32
+ image_project : pg-ci-images
33
+ # NetBSD version should match
34
+ # https://github.com/anarazel/pg-vm-images/blob/main/packer/netbsd.pkrvars.hcl
35
+ image : family/pg-ci-netbsd-vanilla-9-3
36
+ platform : netbsd
37
+ install_script :
38
+ # Folders should be updated in line with
39
+ # http://cdn.netbsd.org/pub/pkgsrc/packages/NetBSD/x86_64/
40
+ - export PKG_PATH="http://cdn.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname -p)/$(uname -r|cut -f '1 2' -d.)/All/;http://cdn.netbsd.org/pub/pkgsrc/packages/NetBSD/x86_64/9.0_2023Q1/All/"
41
+ - pkg_add ghc cabal-install git autoconf
42
+ script :
43
+ - export CABAL_DIR=/tmp/.cabal
44
+ - ghc --version
45
+ - cabal --version
46
+ - cabal update
47
+ - autoreconf -i
48
+ # Select a build plan which does not involve 'text'
49
+ - cabal test --test-show-details=direct --constraint 'text < 0'
You can’t perform that action at this time.
0 commit comments