Skip to content

Commit 510b243

Browse files
author
Alexander Batashev
authored
[CI] Install cm-compiler in drivers image (#5128)
At least one test in llvm-test-suite uses C for metal. Deploy required components to run it.
1 parent 2bdc4c4 commit 510b243

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

devops/containers/ubuntu2004_intel_drivers.Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ENV DEBIAN_FRONTEND=noninteractive
77

88
ARG compute_runtime_tag=latest
99
ARG igc_tag=latest
10+
ARG cm_tag=latest
1011
ARG tbb_tag=latest
1112
ARG fpgaemu_tag=latest
1213
ARG cpu_tag=latest
@@ -15,14 +16,17 @@ RUN apt update && apt install -yqq wget
1516

1617
COPY scripts/get_release.py /
1718

18-
# Install IGC and NEO
19+
# Install IGC, CM and NEO
1920
RUN python3 /get_release.py intel/intel-graphics-compiler $igc_tag \
2021
| grep ".*deb" \
2122
| wget -qi - && \
2223
python3 /get_release.py intel/compute-runtime $compute_runtime_tag \
2324
| grep -E ".*((deb)|(sum))" \
2425
| wget -qi - && \
2526
sha256sum -c *.sum &&\
27+
python3 /get_release.py intel/cm-compiler $cm_tag \
28+
| grep ".*deb" \
29+
| wget -qi - && \
2630
dpkg -i *.deb && rm *.deb *.sum
2731

2832
RUN mkdir /runtimes

0 commit comments

Comments
 (0)