File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 77
77
base_image=ghcr.io/intel/llvm/ubuntu2404_build
78
78
base_tag=latest
79
79
use_unstable_driver=false
80
+ - name : LLVM Nightly Ubuntu 24.04 Docker image
81
+ file : ubuntu2404_llvm_nightly
82
+ tag : latest
80
83
steps :
81
84
- name : Checkout
82
85
uses : actions/checkout@v4
Original file line number Diff line number Diff line change
1
+ ARG base_tag=latest
2
+ ARG base_image=ghcr.io/intel/llvm/ubuntu2404_base
3
+
4
+ FROM $base_image:$base_tag
5
+
6
+ ENV DEBIAN_FRONTEND=noninteractive
7
+
8
+ USER root
9
+
10
+ RUN curl -sSL https://apt.llvm.org/llvm-snapshot.gpg.key -o /etc/apt/trusted.gpg.d/apt.llvm.org.asc
11
+ RUN echo 'deb http://apt.llvm.org/noble/ llvm-toolchain-noble main' > /etc/apt/sources.list.d/llvm.list
12
+
13
+ USER sycl
14
+
15
+ ENTRYPOINT ["/docker_entrypoint.sh" ]
You can’t perform that action at this time.
0 commit comments