-
Notifications
You must be signed in to change notification settings - Fork 2
/
.cirrus.yml
22 lines (20 loc) · 1.01 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
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.13.1
mirage_script: eval `opam env` && opam install --confirm-level=unsafe-yes "mirage>=4.8.0"
configure_script: eval `opam env` && cd unikernel && mirage configure -t hvt
depend_script: eval `opam env` && cd unikernel && gmake depend
build_script: eval `opam env` && cd unikernel && gmake build
tlstunnel_artifacts:
path: unikernel/dist/tlstunnel.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` && cd unikernel && mirage configure -t hvt --enable-monitoring
depend_script: eval `opam env` && cd unikernel && gmake depend
build_script: eval `opam env` && cd unikernel && gmake build
tlstunnel_artifacts:
path: unikernel/dist/tlstunnel.hvt