diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 2504734a..19278454 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -9,6 +9,7 @@ on: jobs: build-windows: strategy: + fail-fast: false matrix: ocaml-compiler: - ocaml.5.0.0,ocaml-option-mingw @@ -25,7 +26,7 @@ jobs: uses: actions/checkout@v3 - name: Set up OCaml - uses: ocaml/setup-ocaml@v2 + uses: ocaml/setup-ocaml@v3 with: ocaml-compiler: ${{ matrix.ocaml-compiler }} opam-repositories: | diff --git a/dune-project b/dune-project index fd8fed23..ed108b70 100644 --- a/dune-project +++ b/dune-project @@ -39,18 +39,18 @@ (domain-local-timeout (>= 1.0.1)) (multicore-magic - (>= 2.1.0)) + (>= 2.3.0)) (domain_shims (and (>= 0.1.0) :with-test)) (alcotest (and - (>= 1.7.0) + (>= 1.8.0) :with-test)) (mdx (and - (>= 2.3.0) + (>= 2.4.1) :with-test)) (sherlodoc (and @@ -58,7 +58,7 @@ :with-doc)) (odoc (and - (>= 2.4.1) + (>= 2.4.2) :with-doc)))) (package @@ -71,7 +71,7 @@ (kcas (= :version)) (multicore-magic - (>= 2.1.0)) + (>= 2.3.0)) (backoff (and (>= 0.1.0) @@ -86,11 +86,11 @@ :with-test)) (multicore-bench (and - (>= 0.1.2) + (>= 0.1.4) :with-test)) (alcotest (and - (>= 1.7.0) + (>= 1.8.0) :with-test)) (qcheck-core (and @@ -102,7 +102,7 @@ :with-test)) (mdx (and - (>= 2.3.0) + (>= 2.4.1) :with-test)) (sherlodoc (and @@ -110,5 +110,5 @@ :with-doc)) (odoc (and - (>= 2.4.1) + (>= 2.4.2) :with-doc)))) diff --git a/kcas.opam b/kcas.opam index b86d124e..7b29e61d 100644 --- a/kcas.opam +++ b/kcas.opam @@ -21,12 +21,12 @@ depends: [ "backoff" {>= "0.1.0"} "domain-local-await" {>= "1.0.1"} "domain-local-timeout" {>= "1.0.1"} - "multicore-magic" {>= "2.1.0"} + "multicore-magic" {>= "2.3.0"} "domain_shims" {>= "0.1.0" & with-test} - "alcotest" {>= "1.7.0" & with-test} - "mdx" {>= "2.3.0" & with-test} + "alcotest" {>= "1.8.0" & with-test} + "mdx" {>= "2.4.1" & with-test} "sherlodoc" {>= "0.2" & with-doc} - "odoc" {>= "2.4.1" & with-doc} + "odoc" {>= "2.4.2" & with-doc} ] build: [ ["dune" "subst"] {dev} diff --git a/kcas_data.opam b/kcas_data.opam index 0791b04d..057d28dd 100644 --- a/kcas_data.opam +++ b/kcas_data.opam @@ -18,17 +18,17 @@ bug-reports: "https://github.com/ocaml-multicore/kcas/issues" depends: [ "dune" {>= "3.14"} "kcas" {= version} - "multicore-magic" {>= "2.1.0"} + "multicore-magic" {>= "2.3.0"} "backoff" {>= "0.1.0" & with-test} "domain-local-await" {>= "1.0.1" & with-test} "domain_shims" {>= "0.1.0" & with-test} - "multicore-bench" {>= "0.1.2" & with-test} - "alcotest" {>= "1.7.0" & with-test} + "multicore-bench" {>= "0.1.4" & with-test} + "alcotest" {>= "1.8.0" & with-test} "qcheck-core" {>= "0.21.2" & with-test} "qcheck-stm" {>= "0.3" & with-test} - "mdx" {>= "2.3.0" & with-test} + "mdx" {>= "2.4.1" & with-test} "sherlodoc" {>= "0.2" & with-doc} - "odoc" {>= "2.4.1" & with-doc} + "odoc" {>= "2.4.2" & with-doc} ] build: [ ["dune" "subst"] {dev}