Skip to content
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

Feat: Support ARM64 platform in XGBoost examples #2114

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/publish-example-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
uses: ./.github/workflows/build-and-publish-images.yaml
with:
component-name: ${{ matrix.component-name }}
platforms: ${{matrix.platforms}}
platforms: ${{ matrix.platforms }}
dockerfile: ${{ matrix.dockerfile }}
context: ${{ matrix.context }}
secrets:
Expand Down Expand Up @@ -45,12 +45,15 @@ jobs:
dockerfile: examples/pytorch/cpu-demo/Dockerfile
context: examples/pytorch/cpu-demo
- component-name: xgboost-dist-iris
platforms: linux/amd64,linux/arm64
dockerfile: examples/xgboost/xgboost-dist/Dockerfile
context: examples/xgboost/xgboost-dist
- component-name: lightgbm-dist-py-test
platforms: linux/amd64,linux/arm64
dockerfile: examples/xgboost/lightgbm-dist/Dockerfile
context: examples/xgboost/lightgbm-dist
- component-name: xgboost-dist-rabit-test
platforms: linux/amd64,linux/arm64
dockerfile: examples/xgboost/smoke-dist/Dockerfile
context: examples/xgboost/smoke-dist
- component-name: mxnet-gpu
Expand Down
Loading