-
Notifications
You must be signed in to change notification settings - Fork 4
/
.cirrus.yml
22 lines (20 loc) · 924 Bytes
/
.cirrus.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
freebsd_instance:
image_family: freebsd-14-1
freebsd_task:
pkg_install_script: pkg install -y ocaml-opam gmake bash
ocaml_script: opam init -a --comp=4.14.1
mirage_script: eval `opam env` && opam install --confirm-level=unsafe-yes "mirage>=4.8.0"
configure_script: eval `opam env` && mirage configure -t hvt
depend_script: eval `opam env` && gmake depend
build_script: eval `opam env` && gmake build
primarygit_artifacts:
path: dist/primary-git.hvt
freebsd_monitoring_task:
pkg_install_script: pkg install -y ocaml-opam gmake bash
ocaml_script: opam init -a --comp=4.14.2
mirage_script: eval `opam env` && opam install --confirm-level=unsafe-yes "mirage>=4.8.0"
configure_script: eval `opam env` && mirage configure -t hvt --enable-monitoring
depend_script: eval `opam env` && gmake depend
build_script: eval `opam env` && gmake build
primarygit_artifacts:
path: dist/primary-git.hvt