-
Notifications
You must be signed in to change notification settings - Fork 5
42 lines (36 loc) · 1.17 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
name: mlmpfr CI
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0' # weekly
jobs:
main:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
ocaml-compiler: [4.12.1, 4.14.0, 5.0.0, 5.1.1, 5.2.0]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- if: matrix.os == 'ubuntu-latest'
run: |
apt install libmpfr-dev
- if: matrix.os == 'macos-latest'
run: |
brew install mpfr
- name: Build and test mlmpfr
run: |
opam install . --deps-only --with-doc --with-test
opam exec -- dune build @install --profile dev
opam exec -- dune build @runtest --profile dev --verbose
opam exec -- dune build @doc
opam exec -- dune install
# LD_LIBRARY_PATH is not exported by dune for executables
# FIXME find a way to export LD_LIBRARY_PATH with dune
LD_LIBRARY_PATH=/usr/local/lib opam exec -- dune exec examples/example.exe