-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable github actions for testing (#658)
* Enable github actions This tests separately the three packages, should catch packaging issues before releases are made. It also tests the arm builds for macos. Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * Update compiler version syntax Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * Update action name Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * tests reqiuire owl in the way they are structured Signed-off-by: Marcello Seri <marcello.seri@gmail.com> --------- Signed-off-by: Marcello Seri <marcello.seri@gmail.com>
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Main workflow | ||
|
||
on: | ||
- pull_request | ||
- push | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- macos-14 # beta runner for macos arm64 | ||
- macos-latest | ||
- ubuntu-latest | ||
# - windows-latest | ||
ocaml-compiler: | ||
- "5.1" | ||
- "4.14" | ||
- "4.12" | ||
- "4.10" | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Use OCaml ${{ matrix.ocaml-compiler }} | ||
uses: ocaml/setup-ocaml@v2 | ||
with: | ||
ocaml-compiler: ${{ matrix.ocaml-compiler }} | ||
opam-local-packages: | | ||
*.opam | ||
- run: opam depext owl --with-test | ||
|
||
- run: | | ||
opam install owl-base --yes --deps-only --with-test | ||
opam exec -- dune build -p owl-base | ||
opam exec -- dune runtest -p owl-base | ||
- run: | | ||
opam install owl --yes --deps-only --with-test | ||
opam exec -- dune build -p owl | ||
opam exec -- dune runtest -p owl | ||
- run: | | ||
opam install owl-top --yes --deps-only --with-test | ||
opam exec -- dune build -p owl-top | ||
opam exec -- dune runtest -p owl-top |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
(tests | ||
(names test_runner) | ||
(libraries alcotest owl) | ||
(package owl) | ||
(action | ||
(run %{test}))) |