From 4322dd0128b5aeb7a8f3ff664c47dd44a5530ef0 Mon Sep 17 00:00:00 2001 From: Hannes Mehnert Date: Wed, 3 Jan 2024 11:03:26 +0100 Subject: [PATCH] windows CI: do not compile & test tar-eio since the GitHub CI uses OCaml 4.14, compile and test only tar, tar-unix and tar-mirage --- .github/workflows/main.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d579324..b03ea0a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,11 +30,14 @@ jobs: opam-repositories: | opam-repository-mingw: https://github.com/ocaml-opam/opam-repository-mingw.git#sunset default: https://github.com/ocaml/opam-repository.git + opam-local-packages: | + *.opam + !tar-eio.opam - run: | opam depext conf-pkg-config - opam install . --deps-only --with-test + opam install --deps-only --with-test tar tar-unix tar-mirage - - run: opam exec -- dune build + - run: opam exec -- dune build -p tar,tar-unix,tar-mirage - - run: opam exec -- dune runtest + - run: opam exec -- dune runtest -p tar,tar-unix,tar-mirage