-
Notifications
You must be signed in to change notification settings - Fork 3
43 lines (42 loc) · 1.13 KB
/
build.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
name: build
run-name: Build Bam
on: [push]
jobs:
build_matrix:
runs-on: ubuntu-latest
strategy:
matrix:
ocaml-compiler: [
# OCaml LTS version
ocaml.4.14.1,
# ocaml-system for Fedora 39
ocaml.5.0.0,
# ocaml-system for Archlinux
ocaml.5.1.0
]
steps:
- uses: actions/checkout@v4
- name: setting up opam...
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Install dependencies
run: |
opam update
opam upgrade
opam install . --deps-only -t
- name: Build Bam
run: |
eval $(opam env)
dune build .
- name: Build documentation
run: |
eval $(opam env)
opam install odoc
dune build @doc
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v2
with:
path: _build/default/_doc/_html
- name: Deploy to GitHub pages
uses: actions/deploy-pages@v4 # or specific "vX.X.X" version tag for this action