Skip to content

Commit 038587f

Browse files
authored
ci: Use self hosted runner for arm image build (#1433)
<!-- .github/pull_request_template.md --> ## 📌 Description <!-- What does this PR do? Briefly describe the changes and why they’re needed. --> ## 🔍 Related Issues <!-- Link any related issues here --> ## 🚀 Pull Request Checklist Thank you for contributing to FlashInfer! Before we review your pull request, please make sure the following items are complete. ### ✅ Pre-commit Checks - [ ] I have installed `pre-commit` by running `pip install pre-commit` (or used your preferred method). - [ ] I have installed the hooks with `pre-commit install`. - [ ] I have run the hooks manually with `pre-commit run --all-files` and fixed any reported issues. > If you are unsure about how to set up `pre-commit`, see [the pre-commit documentation](https://pre-commit.com/). ## 🧪 Tests - [ ] Tests have been added or updated as needed. - [ ] All tests are passing (`unittest`, etc.). ## Reviewer Notes <!-- Optional: anything you'd like reviewers to focus on, concerns, etc. -->
1 parent 68f3d68 commit 038587f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release-ci-docker.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ jobs:
77
build:
88
strategy:
99
matrix:
10-
os: [ubuntu-latest, ubuntu-24.04-arm64]
10+
include:
11+
- os: ubuntu-latest
12+
arch: amd64
13+
- os: [self-hosted, Linux, ARM64]
14+
arch: arm64
1115
runs-on: ${{ matrix.os }}
1216
steps:
1317
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)