Skip to content

Commit 8d07b4d

Browse files
authored
[CI] Resolve artifacts name collision in Nightly (#8926)
Nightly job builds two flavors of containers: Ubuntu 20.04 and Ubuntu 22.04. Both flavors use the same name for build artifacts "default". When artifacts built on Ubuntu 22.04 packaged to Ubuntu 20.04 based image, the compiler doesn't work becuase C++ runtime is too old.
1 parent 481478a commit 8d07b4d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/sycl_nightly.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
secrets: inherit
3535
with:
3636
build_cache_root: "/__w/"
37-
build_artifact_suffix: default
37+
build_artifact_suffix: default-2204
3838
build_configure_extra_args: ''
3939
build_image: "ghcr.io/intel/llvm/ubuntu2204_build:latest"
4040

@@ -57,7 +57,7 @@ jobs:
5757
with:
5858
build_cache_root: "/__w/"
5959
build_cache_suffix: opaque_pointers
60-
build_artifact_suffix: opaque_pointers
60+
build_artifact_suffix: opaque_pointers-2204
6161
build_configure_extra_args: "--hip --cuda --enable-esimd-emulator --cmake-opt=-DSPIRV_ENABLE_OPAQUE_POINTERS=TRUE"
6262
build_image: "ghcr.io/intel/llvm/ubuntu2204_build:latest"
6363

@@ -111,7 +111,7 @@ jobs:
111111
- uses: actions/checkout@v3
112112
- uses: actions/download-artifact@v3
113113
with:
114-
name: sycl_linux_default
114+
name: sycl_linux_default-2204
115115
path: devops/
116116
- name: Build and Push Container (with drivers)
117117
uses: ./devops/actions/build_container

0 commit comments

Comments
 (0)