diff --git a/.github/workflows/sycl-containers-igc-dev.yaml b/.github/workflows/sycl-containers-igc-dev.yaml index 8a8f73285ae15..ae2a660a79e93 100644 --- a/.github/workflows/sycl-containers-igc-dev.yaml +++ b/.github/workflows/sycl-containers-igc-dev.yaml @@ -33,7 +33,7 @@ jobs: imagefile: ubuntu2404_intel_drivers tag: devigc build_args: | - "use_latest=false" + "use_unstable_driver=false" "use_igc_dev=true" steps: - name: Checkout diff --git a/.github/workflows/sycl-containers.yaml b/.github/workflows/sycl-containers.yaml index 5c39885bd7c1a..2a77631d5f653 100644 --- a/.github/workflows/sycl-containers.yaml +++ b/.github/workflows/sycl-containers.yaml @@ -54,22 +54,22 @@ jobs: - name: Intel Drivers Ubuntu 22.04 Docker image file: ubuntu2204_intel_drivers tag: latest - build_args: "use_latest=false" + build_args: "use_unstable_driver=false" - name: Intel Drivers Ubuntu 24.04 Docker image file: ubuntu2404_intel_drivers tag: latest - build_args: "use_latest=false" + build_args: "use_unstable_driver=false" - name: Intel Drivers (unstable) Ubuntu 24.04 Docker image file: ubuntu2404_intel_drivers tag: unstable - build_args: "use_latest=true" + build_args: "use_unstable_driver=true" - name: Build + Intel Drivers Ubuntu 22.04 Docker image file: ubuntu2204_intel_drivers tag: alldeps build_args: | base_image=ghcr.io/intel/llvm/ubuntu2204_build base_tag=latest - use_latest=false + use_unstable_driver=false steps: - name: Checkout uses: actions/checkout@v4 diff --git a/devops/containers/ubuntu2204_intel_drivers.Dockerfile b/devops/containers/ubuntu2204_intel_drivers.Dockerfile index 951a5d3c854c0..58ec09bb5feb2 100644 --- a/devops/containers/ubuntu2204_intel_drivers.Dockerfile +++ b/devops/containers/ubuntu2204_intel_drivers.Dockerfile @@ -5,7 +5,7 @@ FROM $base_image:$base_tag ENV DEBIAN_FRONTEND=noninteractive -ARG use_latest=true +ARG use_unstable_driver=true USER root @@ -18,7 +18,7 @@ COPY dependencies.json / RUN mkdir /runtimes ENV INSTALL_LOCATION=/runtimes RUN --mount=type=secret,id=github_token \ - if [ "$use_latest" = "true" ]; then \ + if [ "$use_unstable_driver" = "true" ]; then \ install_driver_opt=" --use-latest"; \ else \ install_driver_opt=" dependencies.json"; \ diff --git a/devops/containers/ubuntu2404_intel_drivers.Dockerfile b/devops/containers/ubuntu2404_intel_drivers.Dockerfile index 1cb8857fecc5e..2e9997c3a3770 100644 --- a/devops/containers/ubuntu2404_intel_drivers.Dockerfile +++ b/devops/containers/ubuntu2404_intel_drivers.Dockerfile @@ -5,7 +5,7 @@ FROM $base_image:$base_tag ENV DEBIAN_FRONTEND=noninteractive -ARG use_latest=true +ARG use_unstable_driver=true USER root @@ -18,7 +18,7 @@ COPY dependencies.json / RUN mkdir /runtimes ENV INSTALL_LOCATION=/runtimes RUN --mount=type=secret,id=github_token \ - if [ "$use_latest" = "true" ]; then \ + if [ "$use_unstable_driver" = "true" ]; then \ install_driver_opt=" --use-latest"; \ else \ install_driver_opt=" dependencies.json"; \