Skip to content

Commit 3ce92e1

Browse files
authored
github: fix empty continuation line; remove trailing whitespace (llvm#129535)
- Trailing whitespace shows up as red on my editor, so remove. - Docker on my machine warns that having line continuations like: ``` sudo \ foo ``` is deprecated, and will become an error, so fix that up ahead of time.
1 parent 2012089 commit 3ce92e1

File tree

1 file changed

+2
-3
lines changed
  • .github/workflows/containers/github-action-ci

1 file changed

+2
-3
lines changed

.github/workflows/containers/github-action-ci/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ RUN cmake -B ./build -G Ninja ./llvm \
4040
RUN ninja -C ./build stage2-clang-bolt stage2-install-distribution && ninja -C ./build install-distribution
4141

4242
FROM base as ci-container
43-
43+
4444
COPY --from=stage1-toolchain $LLVM_SYSROOT $LLVM_SYSROOT
4545

4646
# Need to install curl for hendrikmuhs/ccache-action
@@ -49,7 +49,7 @@ COPY --from=stage1-toolchain $LLVM_SYSROOT $LLVM_SYSROOT
4949
# Need git for SPIRV-Tools tests.
5050
RUN apt-get update && \
5151
DEBIAN_FRONTEND=noninteractive apt-get install -y \
52-
binutils \
52+
binutils \
5353
cmake \
5454
curl \
5555
git \
@@ -59,7 +59,6 @@ RUN apt-get update && \
5959
perl-modules \
6060
python3-psutil \
6161
sudo \
62-
6362
# These are needed by the premerge pipeline. Pip is used to install
6463
# dependent python packages and ccache is used for build caching. File and
6564
# tzdata are used for tests.

0 commit comments

Comments
 (0)