-
Notifications
You must be signed in to change notification settings - Fork 9
/
.cirrus.yml
32 lines (29 loc) · 1.53 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
23
24
25
26
27
28
29
30
31
32
freebsd_instance:
image_family: freebsd-14-1
freebsd_client_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 mirage-client && mirage configure -t hvt
depend_script: eval `opam env` && cd mirage-client && gmake depend
build_script: eval `opam env` && cd mirage-client && gmake build
client_artifacts:
path: mirage-client/dist/ovpn-client.hvt
freebsd_router_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 mirage-router && mirage configure -t hvt --enable-monitoring
depend_script: eval `opam env` && cd mirage-router && gmake depend
build_script: eval `opam env` && cd mirage-router && gmake build
router_artifacts:
path: mirage-router/dist/ovpn-router.hvt
freebsd_server_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 mirage-server && mirage configure -t hvt
depend_script: eval `opam env` && cd mirage-server && gmake depend
build_script: eval `opam env` && cd mirage-server && gmake build
server_artifacts:
path: mirage-server/dist/ovpn-server.hvt