Skip to content

Commit 67d92b5

Browse files
authored
[Devops] Include nightly in main base image (#18725)
Add https://apt.llvm.org/ as an apt repo to get nightly builds.
1 parent 85a3861 commit 67d92b5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

devops/containers/ubuntu2404_base.Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ ENV DEBIAN_FRONTEND=noninteractive
44

55
USER root
66

7+
# Configure LLVM nightly repo
8+
RUN apt-get update -qq && apt-get install --no-install-recommends -yqq curl ca-certificates
9+
RUN curl -sSL https://apt.llvm.org/llvm-snapshot.gpg.key -o /etc/apt/trusted.gpg.d/apt.llvm.org.asc
10+
RUN echo 'deb http://apt.llvm.org/noble/ llvm-toolchain-noble main' > /etc/apt/sources.list.d/llvm.list
11+
712
# Install SYCL prerequisites
813
COPY scripts/install_build_tools.sh /install.sh
914
RUN /install.sh

0 commit comments

Comments
 (0)