-
Notifications
You must be signed in to change notification settings - Fork 0
ci: add riscv64 C++ CI job on RISE native runners #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
deca166
5a14094
eb80b0d
8eba611
70b63e9
cc2a07b
8176fd3
8cddd60
bd0cd25
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -102,6 +102,13 @@ jobs: | |||||||||||||||||||||||||||||||||||||
| runs-on: ubuntu-24.04-arm | ||||||||||||||||||||||||||||||||||||||
| title: ARM64 Ubuntu 22.04 C++ | ||||||||||||||||||||||||||||||||||||||
| ubuntu: 22.04 | ||||||||||||||||||||||||||||||||||||||
| - arch: riscv64 | ||||||||||||||||||||||||||||||||||||||
| clang-tools: 18 | ||||||||||||||||||||||||||||||||||||||
| image: ubuntu-cpp | ||||||||||||||||||||||||||||||||||||||
| llvm: 18 | ||||||||||||||||||||||||||||||||||||||
| runs-on: ubuntu-24.04-riscv | ||||||||||||||||||||||||||||||||||||||
| title: RISCV64 Ubuntu 24.04 C++ | ||||||||||||||||||||||||||||||||||||||
| ubuntu: 24.04 | ||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+105
to
+112
|
||||||||||||||||||||||||||||||||||||||
| - arch: riscv64 | |
| clang-tools: 18 | |
| image: ubuntu-cpp | |
| llvm: 18 | |
| runs-on: ubuntu-24.04-riscv | |
| title: RISCV64 Ubuntu 24.04 C++ | |
| ubuntu: 24.04 | |
| # NOTE: On riscv64, MinIO and the GCS storage testbench are not installed, | |
| # so S3/GCS filesystem tests (arrow-s3fs-test / arrow-gcsfs-test) run with | |
| # reduced coverage or are skipped. This job is intentionally marked as such. | |
| - arch: riscv64 | |
| clang-tools: 18 | |
| image: ubuntu-cpp | |
| llvm: 18 | |
| runs-on: ubuntu-24.04-riscv | |
| title: RISCV64 Ubuntu 24.04 C++ (reduced filesystem tests) | |
| ubuntu: 24.04 | |
| filesystem-tests: reduced |
coderabbitai[bot] marked this conversation as resolved.
Show resolved
Hide resolved
Outdated
Copilot
AI
Mar 22, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Python-setup condition is now coupled to a specific runner label (contains(matrix.runs-on, 'ubuntu-24.04-riscv')). For maintainability (e.g., if the runner label changes or additional RISC-V labels are introduced), consider keying this off the matrix data (matrix.arch == 'riscv64') or a dedicated matrix flag (e.g., needs-python-apt: true) instead of matching on the runs-on string.
| contains(matrix.runs-on, 'ubuntu-24.04-riscv') | |
| matrix.arch == 'riscv64' |
Uh oh!
There was an error while loading. Please reload this page.