Skip to content

Commit 73499ee

Browse files
build script comment manylinux check
1 parent 318aadb commit 73499ee

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

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

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,17 @@ RUN chmod +x /usr/bin/actions-runner /usr/bin/entrypoint
5353

5454

5555
# Install Podman (v4.6.0) for container management
56-
RUN apt-get update && apt-get install -y \
57-
make \
58-
gcc \
59-
libseccomp-dev \
60-
libapparmor-dev \
61-
&& apt-get clean && rm -rf /var/lib/apt/lists/*
56+
RUN echo "deb [arch=ppc64el] http://ports.ubuntu.com/ jammy main restricted universe multiverse" > /etc/apt/sources.list && \
57+
echo "deb [arch=ppc64el] http://ports.ubuntu.com/ jammy-updates main restricted universe multiverse" >> /etc/apt/sources.list && \
58+
echo "deb [arch=ppc64el] http://ports.ubuntu.com/ jammy-security main restricted universe multiverse" >> /etc/apt/sources.list && \
59+
apt-get update && apt-get install -y \
60+
make \
61+
gcc \
62+
libseccomp-dev \
63+
libapparmor-dev && \
64+
apt-get clean && rm -rf /var/lib/apt/lists/*
65+
66+
6267
RUN git clone https://github.com/containers/podman.git && \
6368
cd podman && \
6469
git checkout v4.6.0 && \

0 commit comments

Comments
 (0)