ci(workflows): switch runners to self-hosted - #2724
Open
mingcheng wants to merge 1 commit into
Open
Conversation
- replace `ubuntu-22.04`/`ubuntu-latest` with self-hosted `linux` labels - remove the `Free Disk Space` step from python build x86 job - standardize `overwrite` values to double quotes Signed-off-by: 明城 <mingcheng@antgroup.com>
mingcheng
requested review from
LHT129,
inabao,
jiaweizone and
wxyucs
as code owners
August 20, 2026 06:57
Collaborator
|
/label status/waiting-for-review |
Contributor
Merge Protections🟢 All 2 merge protections satisfied — ready to merge. Show 2 satisfied protections🟢 Require kind label
🟢 Require version label
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s GitHub Actions workflows to run on self-hosted Linux runners instead of GitHub-hosted ubuntu-* runners, with a couple of small workflow cleanups (artifact overwrite quoting, disk-space step removal in one job).
Changes:
- Switched multiple workflow jobs from
ubuntu-22.04/ubuntu-latesttoruns-on: [linux, self-hosted, ...]. - Removed the “Free Disk Space” step from the Python build x86 job and normalized some
overwriteinputs to double quotes. - Minor whitespace cleanup (cron line / trailing spaces).
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/tsan_build_and_test.yml | Moved TSAN build/test jobs onto self-hosted runners. |
| .github/workflows/pr-ci.yml | Moved PR CI jobs onto self-hosted runners; adjusted artifact overwrite quoting; removed one disk cleanup step. |
| .github/workflows/lint.yml | Moved lint job onto self-hosted runners. |
| .github/workflows/daily_test.yml | Moved daily build/test jobs onto self-hosted runners; cron whitespace tweak. |
| .github/workflows/asan_with_simd_option.yml | Moved SIMD ASan jobs onto self-hosted runners. |
| .github/workflows/asan_build_and_test.yml | Moved ASan build/test jobs onto self-hosted runners; whitespace cleanup. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+394
to
397
| runs-on: [linux, self-hosted, X64] | ||
| steps: | ||
| - name: Free Disk Space | ||
| run: rm -rf /opt/hostedtoolcache |
| name: Lint | ||
| runs-on: ubuntu-latest | ||
| # runs-on: self-hosted | ||
| runs-on: [ linux, self-hosted ] |
| name: Unit Test Simd | ||
| needs: daily_build_simd | ||
| runs-on: ubuntu-22.04 | ||
| runs-on: [ linux, self-hosted ] |
| name: Unit Test Simd | ||
| needs: build_asan_simd | ||
| runs-on: ubuntu-22.04 | ||
| runs-on: [ linux, self-hosted ] |
| needs: changes | ||
| if: github.event_name != 'pull_request' || needs.changes.outputs.non_markdown == 'true' | ||
| runs-on: ubuntu-22.04 | ||
| runs-on: [ linux, self-hosted ] |
Collaborator
|
/version 1.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Change Type
Linked Issue
None
What Changed
ubuntu-22.04/ubuntu-latestwith self-hostedlinuxlabelsFree Disk Spacestep from python build x86 joboverwritevalues to double quotesTest Evidence
make fmtmake lintmake testmake cov, run tests, and collect coverageTest details:
Tested with GitHub Action Lint
Note that this is not a full update, only the configurations with longer runtime are being updated. If it runs as expected, then a full update will follow next.
Documentation Impact
README.mdDEVELOPMENT.mdCONTRIBUTING.mdRisk and Rollback
Checklist
kind/bugandkind/feature; see "Linked Issue" above)[skip ci]prefix)