Skip to content

Commit

Permalink
CI: allow Windows build to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
aantron committed Dec 19, 2023
1 parent 20f40da commit c712d03
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,21 @@ jobs:
- 5.1.x
- 4.14.x
- 4.03.x
failing: [false]
include:
- os: macos-latest
ocaml: 4.14.x
failing: false
# Windows allowed to fail due to an upstream problem with libuv's
# autotools build not generating a .dll file since commit 748d894e.
# See
# https://github.com/libuv/libuv/issues/4259
- os: windows-latest
ocaml: 4.14.x
failing: true
fail-fast: false
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.failing }}

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit c712d03

Please sign in to comment.