Skip to content

Commit 0344550

Browse files
commented on 2x runner
1 parent 04a6b3e commit 0344550

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.ci/docker/manywheel/Dockerfile_ppc64le

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ RUN mkdir -p /build_scripts && \
106106
#ADD ./common/install_cpython.sh /build_scripts/install_cpython.sh
107107
ENV SSL_CERT_FILE=
108108
# Run the build script
109-
RUN bash /build_scripts/build.sh && rm -r /build_scripts
109+
#RUN bash /build_scripts/build.sh && rm -r /build_scripts
110110
#RUN bash build_scripts/build.sh && rm -r build_scripts
111111
#RUN bash build_scripts/build.sh || (echo "Checksum verification failed!" && exit 1)
112112

.ci/docker/manywheel/build_scripts/build.sh

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -47,24 +47,24 @@ else
4747
curl -sLO http://ftp.gnu.org/gnu/autoconf/$AUTOCONF_ROOT.tar.gz
4848

4949
# Verify the integrity of the downloaded file using SHA-256 checksum
50-
echo "$AUTOCONF_HASH $AUTOCONF_ROOT.tar.gz" | sha256sum -c -
50+
# echo "$AUTOCONF_HASH $AUTOCONF_ROOT.tar.gz" | sha256sum -c -
5151

52-
# Extract the downloaded tarball
53-
tar -xzf $AUTOCONF_ROOT.tar.gz
54-
cd $AUTOCONF_ROOT
52+
# # Extract the downloaded tarball
53+
# tar -xzf $AUTOCONF_ROOT.tar.gz
54+
# cd $AUTOCONF_ROOT
5555

56-
# Update config.guess and config.sub scripts to ensure proper architecture detection
57-
curl -sLo build-aux/config.guess https://git.savannah.gnu.org/cgit/config.git/plain/config.guess
58-
curl -sLo build-aux/config.sub https://git.savannah.gnu.org/cgit/config.git/plain/config.sub
56+
# # Update config.guess and config.sub scripts to ensure proper architecture detection
57+
# curl -sLo build-aux/config.guess https://git.savannah.gnu.org/cgit/config.git/plain/config.guess
58+
# curl -sLo build-aux/config.sub https://git.savannah.gnu.org/cgit/config.git/plain/config.sub
5959

60-
chmod +x build-aux/config.guess build-aux/config.sub
60+
# chmod +x build-aux/config.guess build-aux/config.sub
6161

62-
# Configure the Autoconf build system with the correct host type for ppc64le
63-
./configure --host=powerpc64le-pc-linux-gnu
62+
# # Configure the Autoconf build system with the correct host type for ppc64le
63+
# ./configure --host=powerpc64le-pc-linux-gnu
6464

65-
# Build and install
66-
make -j$(nproc)
67-
make install
65+
# # Build and install
66+
# make -j$(nproc)
67+
# make install
6868

6969
# Clean up
7070
cd ..

0 commit comments

Comments
 (0)