File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
.github/workflows/containers/github-action-ci Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- FROM docker.io/library/ubuntu:24.04 as base
1
+ FROM docker.io/library/ubuntu:24.04 AS base
2
2
ENV LLVM_SYSROOT=/opt/llvm
3
3
4
- FROM base as stage1-toolchain
4
+ FROM base AS stage1-toolchain
5
5
ENV LLVM_VERSION=21.1.1
6
6
7
7
RUN apt-get update && \
@@ -37,7 +37,7 @@ RUN cmake -B ./build -G Ninja ./llvm \
37
37
38
38
RUN ninja -C ./build stage2-clang-bolt stage2-install-distribution && ninja -C ./build install-distribution
39
39
40
- FROM base as ci-container
40
+ FROM base AS ci-container
41
41
42
42
COPY --from=stage1-toolchain $LLVM_SYSROOT $LLVM_SYSROOT
43
43
@@ -97,7 +97,7 @@ RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
97
97
USER gha
98
98
WORKDIR /home/gha
99
99
100
- FROM ci-container as ci-container-agent
100
+ FROM ci-container AS ci-container-agent
101
101
102
102
ENV GITHUB_RUNNER_VERSION=2.328.0
103
103
You can’t perform that action at this time.
0 commit comments