From 8dda0762c2b68807711f594c220a59917ec3dbcb Mon Sep 17 00:00:00 2001 From: Paul McCarthy Date: Tue, 16 Jul 2024 11:20:16 +0100 Subject: [PATCH] CI: Bump python version for emulated 32 bit tests (3.10 doesn't seem to be available??). Update zlib version on windows. Roll-back actions/checkout version for 32 bit test due to gha / node issue (https://github.com/actions/checkout/issues/1681) --- .ci/download_zlib.sh | 2 +- .github/workflows/main.yaml | 5 ++--- .github/workflows/pull_request.yaml | 4 ++-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.ci/download_zlib.sh b/.ci/download_zlib.sh index 4f5a27d3..c003d731 100755 --- a/.ci/download_zlib.sh +++ b/.ci/download_zlib.sh @@ -4,7 +4,7 @@ # set -e -ZLIB_VERSION=1.3 +ZLIB_VERSION=1.3.1 curl -o zlib.tar.gz https://www.zlib.net/zlib-${ZLIB_VERSION}.tar.gz diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 3c08cca5..8701b5e2 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -14,7 +14,6 @@ defaults: run: shell: bash - jobs: # Quick tests run on all OSes/python versions @@ -242,7 +241,7 @@ jobs: container: i386/ubuntu:20.04 strategy: matrix: - python-version: ["3.9"] + python-version: ["3.11"] extra-args: ["", "--concat"] env: @@ -254,7 +253,7 @@ jobs: steps: - name: Install git run: apt-get update -y && apt-get install -y git - - uses: actions/checkout@v4 + - uses: actions/checkout@v1 - name: Install system dependencies run: bash ./.ci/install_32bit_dependencies.sh - name: Create test environment diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index 716e8a31..f6b737d3 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -55,7 +55,7 @@ jobs: container: i386/ubuntu:20.04 strategy: matrix: - python-version: ["3.9"] + python-version: ["3.11"] extra-args: ["", "--concat"] env: @@ -68,7 +68,7 @@ jobs: steps: - name: Install git run: apt-get update -y && apt-get install -y git - - uses: actions/checkout@v4 + - uses: actions/checkout@v1 - name: Install system dependencies run: bash ./.ci/install_32bit_dependencies.sh - name: Create test environment