We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 524445d commit ddb7651Copy full SHA for ddb7651
.github/workflows/ci.yml
@@ -452,15 +452,10 @@ jobs:
452
matrix:
453
include:
454
- os: macos-13
455
- node-target: darwin-x64
456
- os: macos-14
457
- node-target: darwin-arm64
458
- os: ubuntu-24.04
459
- node-target: linux-x64
460
- os: ubuntu-24.04-arm
461
- node-target: linux-arm64
462
- os: windows-latest
463
- node-target: win32-x64
464
runs-on: ${{ matrix.os }}
465
env:
466
RUST_BACKTRACE: "1"
@@ -507,6 +502,8 @@ jobs:
507
502
working-directory: rewatch/testrepo
508
503
509
504
- name: Run rewatch integration tests
505
+ # Currently fails on Windows and on macOS x64
506
+ if: matrix.os != 'windows-latest' && matrix.os != 'macos-13'
510
run: make test-rewatch-ci
511
512
publish:
0 commit comments