-
Notifications
You must be signed in to change notification settings - Fork 81
73 lines (63 loc) · 2.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: build
on:
pull_request:
push:
branches:
- master
schedule:
# Prime the caches every Monday
- cron: 0 1 * * MON
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
ocaml-compiler:
- "4.13"
- "4.14"
- "5.0"
- "5.1"
- "5.2"
include:
- os: ubuntu-latest
ocaml-compiler: "4.08"
- os: ubuntu-latest
ocaml-compiler: "4.09"
- os: ubuntu-latest
ocaml-compiler: "4.10"
- os: ubuntu-latest
ocaml-compiler: "4.11"
- os: ubuntu-latest
ocaml-compiler: "4.12"
runs-on: ${{ matrix.os }}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
git config --global core.ignorecase false
- name: Checkout tree
uses: actions/checkout@v4
- name: Set-up OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/[email protected]
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
allow-prerelease-opam: true
dune-cache: true
- run: opam install . --with-test --deps-only
- run: opam exec -- make test
- run: OCAMLBUILD=$(pwd)/ocamlbuild.native opam exec -- make -C bootstrap
if: runner.os != 'Windows'
- run: opam exec -- make distclean
- run: opam exec -- opam pin add -n ocamlbuild .
- run: opam exec -- opam install -v ocamlbuild
- run: opam exec -- opam install -v mtime.1.0.0 # this tests topkg, with stub libraries
- run: opam exec -- opam install -v inotify.2.3 # this tests oasis, with stub libraries
if: (! startsWith(matrix.ocaml-compiler, '5')) && runner.os != 'Windows'
- run: opam exec -- opam install -v cpuid.0.1.1 # this tests the ocb-stubblr plugin
if: runner.os != 'Windows'
- run: opam exec -- opam install -v shcaml.0.2.1 # this tests the cppo plugin
if: (! startsWith(matrix.ocaml-compiler, '5')) && runner.os != 'Windows'