File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111
1212jobs :
1313 bump-changelog :
14- runs-on : ubuntu-latest
14+ runs-on : opensource-linux-8core
1515 if : ${{ github.actor == 'dependabot[bot]' }}
1616 permissions :
1717 contents : write
Original file line number Diff line number Diff line change 1111
1212jobs :
1313 lint :
14- runs-on : ubuntu-latest
14+ runs-on : opensource-linux-8core
1515 steps :
1616 - uses : actions/checkout@v5
1717 - name : Read Python version from .python-version
@@ -29,14 +29,14 @@ jobs:
2929 run : make check
3030
3131 shellcheck :
32- runs-on : ubuntu-latest
32+ runs-on : opensource-linux-8core
3333 steps :
3434 - uses : actions/checkout@v5
3535 - name : ShellCheck
3636 uses : ludeeus/action-shellcheck@master
3737
3838 test :
39- runs-on : ubuntu-latest
39+ runs-on : opensource-linux-8core
4040 needs : lint
4141 steps :
4242 - uses : actions/checkout@v5
6161 make check-coverage
6262
6363 changelog :
64- runs-on : ubuntu-latest
64+ runs-on : opensource-linux-8core
6565 steps :
6666 - uses : actions/checkout@v5
6767 - if : github.ref != 'refs/heads/main'
7878
7979 # TODO - figure out best practice for caching docker images
8080 test_dockerfile :
81- runs-on : ubuntu-latest
81+ runs-on : opensource-linux-8core
8282 needs : lint
8383 steps :
8484 - uses : actions/checkout@v5
Original file line number Diff line number Diff line change 1717 (github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
1818 (github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
1919 (github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
20- runs-on : ubuntu-latest
20+ runs-on : opensource-linux-8core
2121 permissions :
2222 contents : read
2323 pull-requests : read
Original file line number Diff line number Diff line change 1313
1414jobs :
1515 set-short-sha :
16- runs-on : ubuntu-latest
16+ runs-on : opensource-linux-8core
1717 outputs :
1818 short_sha : ${{ steps.set_short_sha.outputs.short_sha }}
1919 steps :
2424 strategy :
2525 matrix :
2626 arch : ["arm64", "amd64"]
27- runs-on : ${{ matrix.arch == 'arm64' && 'opensource-linux-arm64-4core' || 'ubuntu-latest ' }}
27+ runs-on : ${{ matrix.arch == 'arm64' && 'opensource-linux-arm64-4core' || 'opensource-linux-8core ' }}
2828 needs : set-short-sha
2929 env :
3030 SHORT_SHA : ${{ needs.set-short-sha.outputs.short_sha }}
9696 # write to the build repository to cache for the publish-images job
9797 docker push $DOCKER_BUILD_REPOSITORY:${{ matrix.arch }}-$SHORT_SHA
9898 publish-images :
99- runs-on : ubuntu-latest
99+ runs-on : opensource-linux-8core
100100 needs : [set-short-sha, build-images]
101101 env :
102102 SHORT_SHA : ${{ needs.set-short-sha.outputs.short_sha }}
You can’t perform that action at this time.
0 commit comments