Skip to content

Commit

Permalink
Reduce build target in 4.14 CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbin committed Oct 26, 2024
1 parent e9fc6b4 commit 26cf2fa
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,12 @@ jobs:
if: startsWith(matrix.ocaml-compiler, '5.')
run: opam install . --deps-only --with-doc --with-test --with-dev-setup

- name: Build
- name: Build for OCaml 4
if: startsWith(matrix.ocaml-compiler, '4.')
run: opam exec -- dune build @all @lint -p provider.opam

- name: Build for OCaml 5
if: startsWith(matrix.ocaml-compiler, '5.')
run: opam exec -- dune build @all @lint

- name: Run OCaml 5 tests
Expand Down

0 comments on commit 26cf2fa

Please sign in to comment.