mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
CI: run all tests on linux and various OCaml versions
and run macOS stuff only for 5.1
This commit is contained in:
parent
2e276002c6
commit
944410d3c7
2 changed files with 31 additions and 18 deletions
36
.github/workflows/main.yml
vendored
36
.github/workflows/main.yml
vendored
|
|
@ -14,9 +14,7 @@ jobs:
|
|||
fail-fast: true
|
||||
matrix:
|
||||
os:
|
||||
- macos-latest
|
||||
- ubuntu-latest
|
||||
#- windows-latest
|
||||
ocaml-compiler:
|
||||
- '4.08'
|
||||
- '4.14'
|
||||
|
|
@ -32,23 +30,37 @@ jobs:
|
|||
ocaml-compiler: ${{ matrix.ocaml-compiler }}
|
||||
dune-cache: true
|
||||
allow-prerelease-opam: true
|
||||
|
||||
- run: opam install -t containers containers-data --deps-only
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
- run: opam exec -- dune build '@install'
|
||||
- run: opam exec -- dune runtest
|
||||
|
||||
compat:
|
||||
name: build
|
||||
timeout-minutes: 15
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
os:
|
||||
- macos-latest
|
||||
- ubuntu-latest
|
||||
#- windows-latest
|
||||
ocaml-compiler:
|
||||
- '5.1'
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@main
|
||||
- name: Use OCaml ${{ matrix.ocaml-compiler }}
|
||||
uses: ocaml/setup-ocaml@v2
|
||||
with:
|
||||
ocaml-compiler: ${{ matrix.ocaml-compiler }}
|
||||
dune-cache: true
|
||||
allow-prerelease-opam: true
|
||||
- run: |
|
||||
opam install -t containers --deps-only ;
|
||||
opam install containers-data --deps-only # no test deps
|
||||
if: matrix.os != 'ubuntu-latest'
|
||||
|
||||
- run: opam exec -- dune build '@install'
|
||||
|
||||
- run: opam exec -- dune runtest
|
||||
if: ${{ matrix.os == 'ubuntu-latest' }}
|
||||
|
||||
- run: opam exec -- dune runtest -j 1 -p containers # test only core on non-ubuntu platform
|
||||
if: ${{ matrix.os != 'ubuntu-latest' }}
|
||||
|
||||
|
||||
format:
|
||||
name: format
|
||||
|
|
|
|||
|
|
@ -140,8 +140,9 @@ let () =
|
|||
l;
|
||||
true
|
||||
|
||||
[@@@endif];;
|
||||
[@@@endif]
|
||||
|
||||
let () =
|
||||
q
|
||||
Q.(list int)
|
||||
(fun l ->
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue