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

e2e/runtime-reproducibility: add gpu image, don't fail fast in checksum step #1190

Merged
merged 2 commits into from
Jan 27, 2025
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
11 changes: 9 additions & 2 deletions .github/workflows/e2e_runtime-reproducibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ jobs:
# cache is present between the two machines)
#
# If adjusting the build-target, remember to also adjust the matrix for the collect-checksums job
build-target: ["microsoft.contrast-node-installer-image", "kata.contrast-node-installer-image"]
build-target:
- "microsoft.contrast-node-installer-image"
- "kata.contrast-node-installer-image"
- "kata.contrast-node-installer-image.gpu"
fail-fast: false
# Usually we would define the matrix outputs here, but as GitHub Actions don't seem to allow per-combination outputs,
# we'll write the outputs without defining them here. See https://github.com/orgs/community/discussions/17245#discussioncomment-3814009.
Expand Down Expand Up @@ -73,7 +76,11 @@ jobs:
needs: os-matrix
strategy:
matrix:
build-target: ["microsoft.contrast-node-installer-image", "kata.contrast-node-installer-image"]
build-target:
- "microsoft.contrast-node-installer-image"
- "kata.contrast-node-installer-image"
- "kata.contrast-node-installer-image.gpu"
fail-fast: false
steps:
- name: Download all checksum artifacts
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
Expand Down