Skip to content

Commit 8331cb7

Browse files
build script comment manylinux check
1 parent 9847bd6 commit 8331cb7

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/scripts/s390x-ci/self-hosted-builder/actions-runner.Dockerfile

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,15 @@ RUN chmod +x /usr/bin/actions-runner /usr/bin/entrypoint
5252

5353
# Install Go (v1.21.1) for ppc64le
5454

55-
RUN curl -LO https://golang.org/dl/go1.21.1.linux-ppc64le.tar.gz && \
56-
echo "eddf018206f8a5589bda75252b72716d26611efebabdca5d0083ec15e9e41ab7 go1.21.1.linux-ppc64le.tar.gz" | sha256sum -c - && \
57-
tar --strip-components=1 -C /usr/local -xzf go1.21.1.linux-ppc64le.tar.gz && \
58-
rm go1.21.1.linux-ppc64le.tar.gz && \
59-
/usr/local/go/bin/go version && \
60-
ln -s /usr/local/go/bin/go /usr/bin/go
55+
RUN curl -LO https://golang.org/dl/go1.21.1.linux-ppc64le.tar.gz
56+
RUN echo "eddf018206f8a5589bda75252b72716d26611efebabdca5d0083ec15e9e41ab7 go1.21.1.linux-ppc64le.tar.gz" | sha256sum -c -
57+
RUN tar --strip-components=1 -C /usr/local -xzf go1.21.1.linux-ppc64le.tar.gz
58+
RUN chmod -R 755 /usr/local/go
59+
RUN export PATH=$PATH:/usr/local/go/bin
60+
RUN ls -l /usr/local/go/bin
61+
RUN /usr/local/go/bin/go version
62+
RUN ln -s /usr/local/go/bin/go /usr/bin/go
63+
6164

6265
ENV PATH="/usr/local/go/bin:${PATH}"
6366
RUN go version

0 commit comments

Comments
 (0)