tasty-bench/.cirrus.yml

39 lines
1.1 KiB
YAML
Raw Normal View History

2022-12-30 03:08:13 +03:00
task:
name: FreeBSD
freebsd_instance:
2024-03-17 01:37:42 +03:00
image_family: freebsd-13-2
2022-12-30 03:08:13 +03:00
install_script: pkg install -y ghc hs-cabal-install git
script:
- cabal update
- cabal build
task:
name: OpenBSD
compute_engine_instance:
image_project: pg-ci-images
2023-03-28 21:55:06 +03:00
# OpenBSD version should match
# https://github.com/anarazel/pg-vm-images/blob/main/packer/openbsd.pkrvars.hcl
2022-12-30 03:08:13 +03:00
image: family/pg-ci-openbsd-vanilla-7-2
platform: openbsd
install_script: pkg_add ghc cabal-install git
script:
- export CABAL_DIR=/tmp/.cabal
- cabal update
- cabal build
2021-11-08 23:33:49 +03:00
task:
2022-12-30 03:08:13 +03:00
name: NetBSD
compute_engine_instance:
image_project: pg-ci-images
2023-03-28 21:55:06 +03:00
# NetBSD version should match
# https://github.com/anarazel/pg-vm-images/blob/main/packer/netbsd.pkrvars.hcl
image: family/pg-ci-netbsd-vanilla-9-3
2022-12-30 03:08:13 +03:00
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/"
- pkg_add ghc cabal-install git
2021-11-08 23:33:49 +03:00
script:
2022-12-30 03:08:13 +03:00
- export CABAL_DIR=/tmp/.cabal
2021-11-08 23:33:49 +03:00
- cabal update
- cabal build