This repository was archived by the owner on Mar 15, 2022. It is now read-only.
File tree 4 files changed +7
-6
lines changed
4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 4
4
set -ex
5
5
6
6
TAG=pypywheels/manylinux2010-pypy_x86_64
7
- docker/build_scripts_pypy/prefetch_pypy.sh
8
7
docker build --rm -t $TAG :latest -f docker/Dockerfile-x86_64 docker/
Original file line number Diff line number Diff line change 1
1
FROM quay.io/pypa/manylinux2010_x86_64
2
2
LABEL maintainer="Antonio Cuni"
3
3
4
- COPY sources /
5
4
COPY build_scripts /build_scripts
6
5
COPY build_scripts_pypy /build_scripts_pypy
7
- RUN bash build_scripts_pypy/install_pypy.sh && rm -rf build_scripts*
6
+ RUN : \
7
+ && build_scripts_pypy/prefetch_pypy.sh \
8
+ && build_scripts_pypy/install_pypy.sh \
9
+ && rm -rf /sources /build_scripts*
8
10
9
11
CMD ["/bin/bash"]
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ function install_one_pypy {
47
47
ln -s /opt/pypy/$shortdir /opt/python/${abi_tag}
48
48
}
49
49
50
- for TARBALL in /pypy* .tar.bz2
50
+ for TARBALL in /sources/ pypy* .tar.bz2
51
51
do
52
52
install_one_pypy " $TARBALL "
53
53
rm " $TARBALL "
Original file line number Diff line number Diff line change 2
2
3
3
set -ex
4
4
5
- SOURCES=docker /sources
5
+ SOURCES=/sources
6
6
SQUEAKY_GITHUB_URL=https://github.com/squeaky-pl/portable-pypy/releases/download # old releases
7
7
URL=https://downloads.python.org/pypy # new releases
8
8
9
9
10
10
MY_DIR=$( dirname " ${BASH_SOURCE[0]} " )
11
11
. $MY_DIR /../build_scripts/build_utils.sh
12
12
13
- [ -d " $SOURCES " ] || mkdir " $SOURCES "
13
+ mkdir -p " $SOURCES "
14
14
cd " $SOURCES "
15
15
16
16
# pypy 7.2.0
You can’t perform that action at this time.
0 commit comments