File tree Expand file tree Collapse file tree 4 files changed +5
-8
lines changed Expand file tree Collapse file tree 4 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,13 @@ USER root
99
1010RUN apt update && apt install -yqq wget
1111
12- COPY scripts/get_release.py /
1312COPY scripts/install_drivers.sh /
1413COPY dependencies.json /
1514
1615RUN mkdir /runtimes
1716ENV INSTALL_LOCATION=/runtimes
1817RUN --mount=type=secret,id=github_token \
19- GITHUB_TOKEN=$(cat /run/secrets/github_token) /install_drivers.sh dependencies.json --all
18+ GITHUB_TOKEN=$(cat /run/secrets/github_token) /install_drivers.sh dependencies.json --igfx --cpu
2019
2120COPY scripts/drivers_entrypoint.sh /drivers_entrypoint.sh
2221
Original file line number Diff line number Diff line change @@ -9,14 +9,13 @@ USER root
99
1010RUN apt update && apt install -yqq wget
1111
12- COPY scripts/get_release.py /
1312COPY scripts/install_drivers.sh /
1413COPY dependencies.json /
1514
1615RUN mkdir /runtimes
1716ENV INSTALL_LOCATION=/runtimes
1817RUN --mount=type=secret,id=github_token \
19- GITHUB_TOKEN=$(cat /run/secrets/github_token) /install_drivers.sh dependencies.json --all
18+ GITHUB_TOKEN=$(cat /run/secrets/github_token) /install_drivers.sh dependencies.json --igfx --cpu
2019
2120COPY scripts/drivers_entrypoint.sh /drivers_entrypoint.sh
2221
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ USER root
99
1010RUN apt update && apt install -yqq libllvm14 libllvm15 libz3-4
1111
12- COPY scripts/get_release.py /
1312COPY scripts/install_drivers.sh /
1413COPY dependencies.json /
1514COPY dependencies-igc-dev.json /
@@ -18,7 +17,7 @@ RUN mkdir /runtimes
1817ENV INSTALL_LOCATION=/runtimes
1918RUN --mount=type=secret,id=github_token \
2019 install_driver_opt="dependencies.json dependencies-igc-dev.json --use-dev-igc" ; \
21- GITHUB_TOKEN=$(cat /run/secrets/github_token) /install_drivers.sh $install_driver_opt --all
20+ GITHUB_TOKEN=$(cat /run/secrets/github_token) /install_drivers.sh $install_driver_opt --igfx --cpu
2221
2322COPY scripts/drivers_entrypoint.sh /drivers_entrypoint.sh
2423
Original file line number Diff line number Diff line change @@ -127,9 +127,9 @@ InstallIGFX () {
127127 | grep -v " u18" \
128128 | wget -qi -
129129 get_release oneapi-src/level-zero $L0_TAG \
130- | grep " .*$UBUNTU_VER .*deb" \
130+ | grep " .*$UBUNTU_VER .*deb$ " \
131131 | wget -qi -
132- dpkg -i --force-all * .deb && rm * .deb * .sum
132+ dpkg -i --force-all * .deb && rm * .deb * .ddeb * . sum
133133 mkdir -p /usr/local/lib/igc/
134134 echo " $IGC_TAG " > /usr/local/lib/igc/IGCTAG.txt
135135 if [ " $IS_IGC_DEV " == " Yes" ]; then
You can’t perform that action at this time.
0 commit comments