Skip to content

Commit

Permalink
CI: disable the esy rows
Browse files Browse the repository at this point in the history
Due to esy/esy#1440.

Closes #149.
  • Loading branch information
aantron committed Dec 18, 2023
1 parent a244db6 commit 20f40da
Showing 1 changed file with 22 additions and 17 deletions.
39 changes: 22 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,25 @@ jobs:
- run: opam install -y --deps-only .
- run: opam exec -- dune build -p luv

esy:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
fail-fast: false
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- run: npm install esy
- run: npx esy install
- run: npx esy build
# esy builds are broken due to an upstream bug that is not worth working
# around in luv, but should be fixed in esy:
#
# https://github.com/esy/esy/issues/1440
#
# esy:
# strategy:
# matrix:
# os:
# - ubuntu-latest
# - macos-latest
# - windows-latest
# fail-fast: false
# runs-on: ${{ matrix.os }}
#
# steps:
# - uses: actions/checkout@v4
# with:
# submodules: recursive
# - run: npm install esy
# - run: npx esy install
# - run: npx esy build

0 comments on commit 20f40da

Please sign in to comment.