diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c76ecaa..55ccf35a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: - name: Download PyPy Sources if: matrix.id != 'basic' run: | - export PYPYVER=v7.3.15 + export PYPYVER=v7.3.16 curl https://downloads.python.org/pypy/pypy2.7-${PYPYVER}-src.tar.bz2 -o pypy.tar.bz2 tar -xjf pypy.tar.bz2 mv pypy2.7-${PYPYVER}-src .pypy diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1eb94b05..078f78a7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,11 +5,14 @@ stages: variables: PYTHONUNBUFFERED: "true" - PYPY_SRC_DIR: /data/home/gitlab-runner/.asdf/installs/awfy/pypysrc-2.7-v7.3.15 - PYPY_BIN_DIR: /data/home/gitlab-runner/.asdf/installs/python/pypy2.7-7.3.15/bin + PYPY_RELEASE: "7.3.16" before_script: - git submodule update --init + - ~/.asdf/bin/asdf install awfy pypysrc-2.7-v${PYPY_RELEASE} + - ~/.asdf/bin/asdf install python pypy2.7-${PYPY_RELEASE} + - export PYPY_SRC_DIR=/data/home/gitlab-runner/.asdf/installs/awfy/pypysrc-2.7-v${PYPY_RELEASE} + - export PYPY_BIN_DIR=/data/home/gitlab-runner/.asdf/installs/python/pypy2.7-${PYPY_RELEASE}/bin build-and-test-interpreters: stage: build-test