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

[ci] Fixes nightly build for onnx 1.17.1 #3021

Merged
merged 1 commit into from
Mar 5, 2024
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: 3 additions & 2 deletions .github/workflows/nightly_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,9 @@ jobs:
run: |
./gradlew :integration:test "-Dai.djl.default_engine=PyTorch"
./gradlew :integration:clean
./gradlew :integration:test "-Dai.djl.default_engine=OnnxRuntime"
./gradlew :integration:clean
# OnnxRuntime 1.17.1 requires GLIBC 2.27
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there another OS we can use when testing with ARM?

GH self-hosted runners will have arm64 machines soon, maybe we just wait for that and we can move away from our self hosted arm64 runners and avoid all these GLIBC version issues

# ./gradlew :integration:test "-Dai.djl.default_engine=OnnxRuntime"
# ./gradlew :integration:clean

test-cuda-121:
if: github.repository == 'deepjavalibrary/djl'
Expand Down
Loading