Build a Docker image we can use for PyPy CI

This commit is contained in:
Jean-Paul Calderone 2019-06-25 13:12:09 -04:00
parent df0153a73e
commit 3e0681e846
2 changed files with 31 additions and 0 deletions

23
.circleci/Dockerfile.pypy Normal file
View File

@ -0,0 +1,23 @@
FROM pypy:2.7-7.1.1-jessie
ENV WHEELHOUSE_PATH /tmp/wheelhouse
ENV VIRTUALENV_PATH /tmp/venv
# This will get updated by the CircleCI checkout step.
ENV BUILD_SRC_ROOT /tmp/project
RUN apt-get --quiet update && \
apt-get --quiet --yes install \
git \
lsb-release \
sudo \
build-essential \
libffi-dev \
libssl-dev \
libyaml-dev \
virtualenv
# Get the project source. This is better than it seems. CircleCI will
# *update* this checkout on each job run, saving us more time per-job.
COPY . ${BUILD_SRC_ROOT}
RUN "${BUILD_SRC_ROOT}"/.circleci/prepare-image.sh "${WHEELHOUSE_PATH}" "${VIRTUALENV_PATH}" "${BUILD_SRC_ROOT}"

View File

@ -406,3 +406,11 @@ jobs:
environment: environment:
DISTRO: "slackware" DISTRO: "slackware"
TAG: "14.2" TAG: "14.2"
build-image-pypy-2.7-7.1.1-jessie:
<<: *BUILD_IMAGE
environment:
DISTRO: "pypy"
TAG: "2.7-7.1.1-jessie"