Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing ETXTBUSY errors in the test infra #5754

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions .github/workflows/integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,19 +201,9 @@ jobs:
fail-fast: false
matrix:
# We run the ubuntu tests on multiple Node versions with 2 shards since they're the fastest.
node: [18, 19, 20]
platform: [ubuntu-latest]
node: [18, 20.6, 20.7]
platform: [ubuntu-22.04, ubuntu-20.04]
shard: ['1/2', '2/2']
# We run the rest of the tests on the minimum Node version we support with 3 shards.
include:
# Windows tests
- {node: 18, platform: windows-latest, shard: 1/3}
- {node: 18, platform: windows-latest, shard: 2/3}
- {node: 18, platform: windows-latest, shard: 3/3}
# macOS tests
- {node: 18, platform: macos-latest, shard: 1/3}
- {node: 18, platform: macos-latest, shard: 2/3}
- {node: 18, platform: macos-latest, shard: 3/3}

name: '${{matrix.platform}} w/ Node.js ${{matrix.node}}.x (${{matrix.shard}})'
runs-on: ${{matrix.platform}}
Expand All @@ -234,6 +224,8 @@ jobs:

- name: 'Run the integration tests'
run: |
# https://github.com/nodejs/node/issues/48444
export UV_USE_IO_URING=0
node ./scripts/run-yarn.js test:integration --maxWorkers=100% --shard=${{matrix.shard}}
shell: bash

Expand Down
Loading