From b55b7fa77e34c1ecd5932bd85f0bdf4c61c7f312 Mon Sep 17 00:00:00 2001 From: Uwe <13865709+greenrobot-team@users.noreply.github.com> Date: Wed, 7 Sep 2022 09:21:02 +0200 Subject: [PATCH 1/3] GitHub Actions: run whole matrix even on failure. --- .github/workflows/test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index cace684..bccd75e 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -7,6 +7,7 @@ on: [push, pull_request] jobs: test: strategy: + fail-fast: false # To see all versions that fail. matrix: os: [ubuntu, windows, macos] python: [3.5, 3.6, 3.7, 3.8, 3.9] From bd5155a66d5da24800156c70ad4760190a03d805 Mon Sep 17 00:00:00 2001 From: Uwe <13865709+greenrobot-team@users.noreply.github.com> Date: Wed, 7 Sep 2022 09:24:35 +0200 Subject: [PATCH 2/3] GitHub Actions: update actions. --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index bccd75e..22e8b0d 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -15,10 +15,10 @@ jobs: runs-on: ${{ matrix.os }}-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} cache: 'pip' From 97a2aecc788ed46d8db2391b228cf99568dafad5 Mon Sep 17 00:00:00 2001 From: Uwe <13865709+greenrobot-team@users.noreply.github.com> Date: Wed, 7 Sep 2022 09:32:09 +0200 Subject: [PATCH 3/3] CI: drop unsupported Python versions. --- .github/workflows/test.yaml | 4 ++-- .gitlab-ci.yml | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 22e8b0d..86c86d8 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -9,8 +9,8 @@ jobs: strategy: fail-fast: false # To see all versions that fail. matrix: - os: [ubuntu, windows, macos] - python: [3.5, 3.6, 3.7, 3.8, 3.9] + os: ["ubuntu", "windows", "macos"] + python: ["3.7", "3.8", "3.9", "3.10"] # https://devguide.python.org/versions/#versions runs-on: ${{ matrix.os }}-latest diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 860ed45..eaa6f63 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,10 +38,6 @@ build: extends: .test tags: [x64, docker, linux] -test:linux:x64:3.6: - extends: .test:linux:x64 - image: python:3.6 - test:linux:x64:3.7: extends: .test:linux:x64 image: python:3.7