Skip to content

Commit 467bb92

Browse files
yzh119yongwww
andauthored
ci: add arm64 to release-ci-docker.yml (#1429)
<!-- .github/pull_request_template.md --> ## πŸ“Œ Description Only x86_64 is supported at this moment. ## πŸ” 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. --> --------- Co-authored-by: yzh119 <[email protected]> Co-authored-by: Yong Wu <[email protected]>
1 parent e8dca1f commit 467bb92

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

β€Ž.github/workflows/release-ci-docker.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ on:
55

66
jobs:
77
build:
8-
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
os: [ubuntu-latest, ubuntu-24.04-arm64]
11+
runs-on: ${{ matrix.os }}
912
steps:
1013
- uses: actions/checkout@v4
1114
- name: Login to Docker Hub

0 commit comments

Comments
Β (0)