We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 458d1af commit 4f5491aCopy full SHA for 4f5491a
.github/workflows/CI.yml
@@ -3,7 +3,7 @@ name: CI
3
on: [push, pull_request]
4
5
jobs:
6
- test:
+ Host-Freestanding:
7
strategy:
8
matrix:
9
operating-system: [ubuntu-latest]
@@ -51,3 +51,18 @@ jobs:
51
run: opam exec -- dune build @install
52
- name: Running tests
53
run: opam exec -- dune runtest
54
+ Ubuntu-GMP:
55
+ runs-on: ubuntu-latest
56
+ steps:
57
+ - uses: actions/checkout@v2
58
+ - uses: actions-ml/setup-ocaml@master
59
+ with:
60
+ ocaml-version: 4.11.2
61
+ - name: Pin ocaml-gmp
62
+ run: opam pin -n -y git+https://github.com/mirage/ocaml-gmp.git#master
63
+ - name: Dune, global GMP
64
+ run: opam depext -iyt gmp dune
65
+ - name: Compiling example project
66
+ run: opam exec -- dune build @install
67
+ - name: Running tests
68
+ run: opam exec -- dune runtest
0 commit comments