File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 33
33
imagefile : ubuntu2404_intel_drivers
34
34
tag : devigc
35
35
build_args : |
36
- "use_latest =false"
36
+ "use_unstable_driver =false"
37
37
"use_igc_dev=true"
38
38
steps :
39
39
- name : Checkout
Original file line number Diff line number Diff line change @@ -54,22 +54,22 @@ jobs:
54
54
- name : Intel Drivers Ubuntu 22.04 Docker image
55
55
file : ubuntu2204_intel_drivers
56
56
tag : latest
57
- build_args : " use_latest =false"
57
+ build_args : " use_unstable_driver =false"
58
58
- name : Intel Drivers Ubuntu 24.04 Docker image
59
59
file : ubuntu2404_intel_drivers
60
60
tag : latest
61
- build_args : " use_latest =false"
61
+ build_args : " use_unstable_driver =false"
62
62
- name : Intel Drivers (unstable) Ubuntu 24.04 Docker image
63
63
file : ubuntu2404_intel_drivers
64
64
tag : unstable
65
- build_args : " use_latest =true"
65
+ build_args : " use_unstable_driver =true"
66
66
- name : Build + Intel Drivers Ubuntu 22.04 Docker image
67
67
file : ubuntu2204_intel_drivers
68
68
tag : alldeps
69
69
build_args : |
70
70
base_image=ghcr.io/intel/llvm/ubuntu2204_build
71
71
base_tag=latest
72
- use_latest =false
72
+ use_unstable_driver =false
73
73
steps :
74
74
- name : Checkout
75
75
uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ FROM $base_image:$base_tag
5
5
6
6
ENV DEBIAN_FRONTEND=noninteractive
7
7
8
- ARG use_latest =true
8
+ ARG use_unstable_driver =true
9
9
10
10
USER root
11
11
@@ -18,7 +18,7 @@ COPY dependencies.json /
18
18
RUN mkdir /runtimes
19
19
ENV INSTALL_LOCATION=/runtimes
20
20
RUN --mount=type=secret,id=github_token \
21
- if [ "$use_latest " = "true" ]; then \
21
+ if [ "$use_unstable_driver " = "true" ]; then \
22
22
install_driver_opt=" --use-latest" ; \
23
23
else \
24
24
install_driver_opt=" dependencies.json" ; \
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ FROM $base_image:$base_tag
5
5
6
6
ENV DEBIAN_FRONTEND=noninteractive
7
7
8
- ARG use_latest =true
8
+ ARG use_unstable_driver =true
9
9
10
10
USER root
11
11
@@ -18,7 +18,7 @@ COPY dependencies.json /
18
18
RUN mkdir /runtimes
19
19
ENV INSTALL_LOCATION=/runtimes
20
20
RUN --mount=type=secret,id=github_token \
21
- if [ "$use_latest " = "true" ]; then \
21
+ if [ "$use_unstable_driver " = "true" ]; then \
22
22
install_driver_opt=" --use-latest" ; \
23
23
else \
24
24
install_driver_opt=" dependencies.json" ; \
You can’t perform that action at this time.
0 commit comments