From a433c2caaf4c3b1801737fa875f9a799ab03f9b7 Mon Sep 17 00:00:00 2001 From: Stefan Marr Date: Sat, 24 Feb 2024 18:37:40 +0000 Subject: [PATCH] [CI] Update Github Actions and use PyPy 7.3.15 Signed-off-by: Stefan Marr --- .github/workflows/ci.yml | 6 +++--- .gitlab-ci.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c2987ae..8c76ecaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,19 +26,19 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true - name: Set up PyPy - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Download PyPy Sources if: matrix.id != 'basic' run: | - export PYPYVER=v7.3.11 + export PYPYVER=v7.3.15 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 ef0c50ba..6a1bc2e4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,8 +5,8 @@ stages: variables: PYTHONUNBUFFERED: "true" - PYPY_SRC_DIR: /home/gitlab-runner/.local/pypy2.7-v7.3.11-src - PYPY_BIN_DIR: /home/gitlab-runner/.local/pypy2.7-v7.3.11-linux64/bin + 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 before_script: - git submodule update --init