-
Notifications
You must be signed in to change notification settings - Fork 124
51 lines (42 loc) · 1.19 KB
/
os.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Multiple OSes
on:
- pull_request
- push
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- macos-14 # beta runner for macos arm64
- macos-latest
- ubuntu-latest
# - windows-latest
ocaml-compiler:
- "5.1"
- "4.14"
- "4.12"
- "4.10"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
opam-local-packages: |
*.opam
- run: opam depext owl --with-test
- run: |
opam install owl-base --yes --deps-only --with-test
opam exec -- dune build -p owl-base
opam exec -- dune runtest -p owl-base
- run: |
opam install owl --yes --deps-only --with-test
opam exec -- dune build -p owl
opam exec -- dune runtest -p owl
- run: |
opam install owl-top --yes --deps-only --with-test
opam exec -- dune build -p owl-top
opam exec -- dune runtest -p owl-top