-
Notifications
You must be signed in to change notification settings - Fork 9
33 lines (33 loc) · 853 Bytes
/
Copy pathmain.yml
File metadata and controls
33 lines (33 loc) · 853 Bytes
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
name: build
on:
push:
branches:
- master
pull_request:
jobs:
run:
name: Build
strategy:
matrix:
os:
- ubuntu-latest
#- windows-latest # depext issue for gnuplot/jemalloc?
#- macos-latest # slow
ocaml-compiler:
- 4.14.x
- 5.1.x
- 5.4.x
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: true
allow-prerelease-opam: true
- run: opam pin -n .
- run: opam depext -y benchpress benchpress-server
- run: opam install . --deps-only
- run: opam exec -- dune build @all --ignore-promoted-rules
- run: opam exec -- dune runtest -p benchpress
if: ${{ matrix.os == 'ubuntu-latest' }}