From 6981d3723288188a7cfcb3f3b805d8775f438398 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Mon, 1 Apr 2024 15:42:09 -0400 Subject: [PATCH] fix CI --- .github/workflows/main.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 410c5b60..37f24faf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,15 +8,13 @@ on: jobs: run: - name: build + name: build # build+test on various versions of OCaml, on linux timeout-minutes: 15 strategy: fail-fast: true matrix: os: - ubuntu-latest - #- macos-latest - #- windows-latest ocaml-compiler: - '4.08' - '4.14' @@ -45,15 +43,14 @@ jobs: - run: opam exec -- dune build --profile=release --force @install @runtest compat: - name: build-compat + name: build-compat # compat with other OSes timeout-minutes: 15 strategy: fail-fast: true matrix: os: - - ubuntu-latest - macos-latest - - windows-latest + #- windows-latest ocaml-compiler: - '5.1' runs-on: ${{ matrix.os }}