Skip to content

Commit

Permalink
reduce fast ci runner from 16 cores to 8
Browse files Browse the repository at this point in the history
16 cores runs in 4 minutes, 8 cores runs in 5. This looks like the sweet spot.
  • Loading branch information
rrotter committed Sep 6, 2023
1 parent 40102f8 commit 4b27d92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
test:
runs-on: ${{ contains( github.event.pull_request.labels.*.name, 'use_fast_ci') && 'ubuntu-latest-16core' || 'ubuntu-latest' }}
runs-on: ${{ contains( github.event.pull_request.labels.*.name, 'use_fast_ci') && 'ubuntu-latest-8core' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4
- name: Run tests
Expand Down

0 comments on commit 4b27d92

Please sign in to comment.