From 948dc05e03793d43ff788a9a653986a39256dbdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Proust?= Date: Mon, 28 Oct 2024 14:08:09 +0100 Subject: [PATCH 1/3] unmark lwt.5.8.0 (un)availability --- packages/lwt/lwt.5.8.0/opam | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/lwt/lwt.5.8.0/opam b/packages/lwt/lwt.5.8.0/opam index e0bf8004b5c..aa9cacd94c4 100644 --- a/packages/lwt/lwt.5.8.0/opam +++ b/packages/lwt/lwt.5.8.0/opam @@ -54,7 +54,6 @@ build: [ "@doc" {with-doc} ] ] -available: os-family != "windows" | "ocaml-version" < "5.2" url { src: "https://github.com/ocsigen/lwt/archive/refs/tags/5.8.0.tar.gz" checksum: [ From 0fb2ca2ba1d8b64fdd8f203293d0da6292f8d7c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Proust?= Date: Mon, 28 Oct 2024 15:22:25 +0100 Subject: [PATCH 2/3] windows workflow: print ocaml version --- .github/workflows/windows.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 0c22bf1465b..b4805d56eb7 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -49,7 +49,9 @@ jobs: - name: Restrict testing to available compilers if: steps.cache-opam.outputs.cache-hit != 'true' # TODO Amend this lowerbound as older compiler packages are updated - run: opam switch set-invariant --formula "`"ocaml`" {>= `"4.13`"}" + run: | + opam switch set-invariant --formula "`"ocaml`" {>= `"4.13`"}" + opam exec -- ocaml -version - name: Save opam cache if: steps.cache-opam.outputs.cache-hit != 'true' From 7db910d69e88caf535e6ca5113d3c1e3a987d717 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Proust?= Date: Mon, 28 Oct 2024 15:26:17 +0100 Subject: [PATCH 3/3] More and more often version information --- .github/workflows/windows.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b4805d56eb7..cf14d0e6e29 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -49,9 +49,7 @@ jobs: - name: Restrict testing to available compilers if: steps.cache-opam.outputs.cache-hit != 'true' # TODO Amend this lowerbound as older compiler packages are updated - run: | - opam switch set-invariant --formula "`"ocaml`" {>= `"4.13`"}" - opam exec -- ocaml -version + run: opam switch set-invariant --formula "`"ocaml`" {>= `"4.13`"}" - name: Save opam cache if: steps.cache-opam.outputs.cache-hit != 'true' @@ -62,6 +60,11 @@ jobs: D:\opamroot key: ${{ steps.cache-opam.outputs.cache-primary-key }} + - name: Print version information + run: | + opam --version + opam exec -- ocaml -version + - name: Get changed files id: changed-files if: github.event_name != 'push'