Skip to content

Commit 759b882

Browse files
committed
Run rewatch integration tests on Linux only
1 parent 585f926 commit 759b882

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,15 +495,16 @@ jobs:
495495
working-directory: ${{ steps.tmp-dir.outputs.path }}
496496

497497
- name: Install ReScript package in rewatch/testrepo
498+
if: runner.os == 'Linux'
498499
run: |
499500
COMMIT_SHA="${{ github.event.pull_request.head.sha || github.sha }}"
500501
yarn add "rescript@https://pkg.pr.new/rescript-lang/rescript@${COMMIT_SHA::7}"
501502
shell: bash
502503
working-directory: rewatch/testrepo
503504

504505
- name: Run rewatch integration tests
505-
# Currently fails on Windows and on macOS x64
506-
if: matrix.os != 'windows-latest' && matrix.os != 'macos-13'
506+
# Currently failing on Windows and intermittently on macOS
507+
if: runner.os == 'Linux'
507508
run: make test-rewatch-ci
508509

509510
publish:

0 commit comments

Comments
 (0)