Skip to content

Commit 574ba2b

Browse files
[CI] Update release_tests_binaries Dockerfile to hardcode base image tag (#20393)
Before this PR: https://github.com/intel/llvm/actions/runs/18595720667/job/53022842454?pr=20391 After this PR: https://github.com/intel/llvm/actions/runs/18595720667/job/53040472511?pr=20391 This PR fixes the following test failures: ``` Failed Tests (2): SYCL :: Matrix/SG32/joint_matrix_bfloat16.cpp ******************** Unexpectedly Passed Tests (2): SYCL :: Matrix/joint_matrix_bfloat16_accumulator.cpp SYCL :: Matrix/joint_matrix_half_accumulator.cpp ``` Hardcoding image tag helps stabilizing igc driver and prevents E2E tests from failing on sycl-rel 6.3 compat testing, when sycl-rel docker image is re-build --------- Co-authored-by: Andrei Elovikov <[email protected]>
1 parent 5c06ef3 commit 574ba2b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

devops/containers/release_tests_binaries.Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
ARG base_tag=alldeps
1+
# Freeze base image to avoid using newer GPU RT/IGC when updating
2+
# the image due to changes in the release branch.
3+
ARG base_tag=1dcf3fd93f3c13b21e9931372fe405493f7e5a7bd5ba1fca192dece74f9b9188
24
ARG base_image=ghcr.io/intel/llvm/ubuntu2404_intel_drivers
35

4-
FROM $base_image:$base_tag
6+
# Remove @sha256 if replacing hash with label in base_tag
7+
FROM $base_image@sha256:$base_tag
58

69
# Actual CI maps volumes via something like "/runner/host/path":"/__w/", so
710
# these won't be visible there. They can be used when manually reproducing

0 commit comments

Comments
 (0)