-
Notifications
You must be signed in to change notification settings - Fork 13
63 lines (52 loc) · 1.6 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
name: Build
on:
- push
- pull_request
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
solver:
- sundials
- nosundials
plot:
- gtk
- nogtk
ocaml-version:
- 5.2.0
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use OCaml ${{ matrix.ocaml-version }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-version }}
- name: Install OCaml dependencies
run: opam install -y graphics ocamlfind menhir
- name: Install Sundials
if: matrix.solver == 'sundials'
run: opam depext conf-sundials
- name: Install Sundials/ML
if: matrix.solver == 'sundials'
run: opam install sundialsml
- name: Install Zelus
run: |
opam pin -y -n -k path .
opam install -y zelus
- name: Install Gtk
if: matrix.plot == 'gtk'
run: opam install -y zelus-gtk
- name: Build all examples
if: matrix.plot == 'gtk'
run: |
cd examples
opam exec -- dune build --root .
- name: Build no-gtk examples only
if: matrix.plot == 'nogtk'
run: |
cd examples
echo "(dirs :standard \ airtraffic backhoe bangbang billiard cantharide clutch_engagement cradle db_intgr engine fuelcontroller heater misc power qss soas_relaycontrol stick_slip_friction stickysprings suspension van_der_pol zener_diode)" >> dune
opam exec -- dune build --root .