Skip to content

Commit

Permalink
Remove runner
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Jul 14, 2024
1 parent 4ef5e28 commit 317473c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:

cargo-test:
name: Test - ${{ matrix.settings.crate }} - ${{ matrix.settings.os }}
runs-on: ${{ matrix.settings.runner }}
runs-on: ${{ matrix.settings.os }}
needs:
- list-cargo-tests
strategy:
Expand Down
3 changes: 0 additions & 3 deletions scripts/github/get-test-matrix.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,19 @@ const settings = [];
for (const pkg of packages) {
settings.push({
crate: pkg,
runner: 'ubunut-latest',
os: 'ubuntu-latest',
});

if (testsYml.os?.windows?.includes(pkg)) {
settings.push({
crate: pkg,
runner: 'windows-latest',
os: 'windows-latest',
});
}

if (testsYml.os?.macos?.includes(pkg)) {
settings.push({
crate: pkg,
runner: 'macos-latest',
os: 'macos-latest',
});
}
Expand Down

0 comments on commit 317473c

Please sign in to comment.