Skip to content

Commit

Permalink
CI: run all tests on linux and various OCaml versions
Browse files Browse the repository at this point in the history
and run macOS stuff only for 5.1
  • Loading branch information
c-cube committed May 14, 2024
1 parent 2e27600 commit 944410d
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 18 deletions.
36 changes: 24 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ jobs:
fail-fast: true
matrix:
os:
- macos-latest
- ubuntu-latest
#- windows-latest
ocaml-compiler:
- '4.08'
- '4.14'
Expand All @@ -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
Expand Down
13 changes: 7 additions & 6 deletions tests/core/t_list.ml
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,14 @@ let () =
l;
true

[@@@endif];;
[@@@endif]

q
Q.(list int)
(fun l ->
fold_flat_map (fun acc x -> x :: acc, [ x; x + 10 ]) [] l
= (List.rev l, flat_map (fun x -> [ x; x + 10 ]) l))
let () =
q
Q.(list int)
(fun l ->
fold_flat_map (fun acc x -> x :: acc, [ x; x + 10 ]) [] l
= (List.rev l, flat_map (fun x -> [ x; x + 10 ]) l))
;;

eq ~printer:Q.Print.(list int) ~name:"unfold1" [ 0; 2; 4; 6; 8; 10 ]
Expand Down

0 comments on commit 944410d

Please sign in to comment.