From 8ba3392e8225a3b1fb1c0884045b1a7b2dd4ba61 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Fri, 2 Dec 2022 13:29:47 +0100 Subject: run Python 3.6 CI on Ubuntu 20.04 (#1164) --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 572f75a..1de7164 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,12 +5,12 @@ on: jobs: linux: - runs-on: ubuntu-latest + runs-on: ${{ matrix.PYTHON.OS || 'ubuntu-22.04' }} strategy: matrix: PYTHON: # Base builds - - {VERSION: "3.6", TOXENV: "py36"} + - {VERSION: "3.6", TOXENV: "py36", OS: "ubuntu-20.04" } - {VERSION: "3.7", TOXENV: "py37"} - {VERSION: "3.8", TOXENV: "py38"} - {VERSION: "3.9", TOXENV: "py39"} @@ -19,7 +19,7 @@ jobs: - {VERSION: "pypy-3.7", TOXENV: "pypy3"} - {VERSION: "pypy-3.8", TOXENV: "pypy3"} # -cryptographyMain - - {VERSION: "3.6", TOXENV: "py36-cryptographyMain"} + - {VERSION: "3.6", TOXENV: "py36-cryptographyMain", OS: "ubuntu-20.04"} - {VERSION: "3.7", TOXENV: "py37-cryptographyMain"} - {VERSION: "3.8", TOXENV: "py38-cryptographyMain"} - {VERSION: "3.9", TOXENV: "py39-cryptographyMain"} @@ -28,7 +28,7 @@ jobs: - {VERSION: "pypy-3.8", TOXENV: "pypy3-cryptographyMain"} - {VERSION: "pypy-3.9", TOXENV: "pypy3-cryptographyMain"} # -cryptographyMinimum - - {VERSION: "3.6", TOXENV: "py36-cryptographyMinimum"} + - {VERSION: "3.6", TOXENV: "py36-cryptographyMinimum", OS: "ubuntu-20.04"} - {VERSION: "3.7", TOXENV: "py37-cryptographyMinimum"} - {VERSION: "3.8", TOXENV: "py38-cryptographyMinimum"} - {VERSION: "3.9", TOXENV: "py39-cryptographyMinimum"} @@ -45,7 +45,7 @@ jobs: # Meta - {VERSION: "3.9", TOXENV: "check-manifest"} - {VERSION: "3.9", TOXENV: "flake8"} - - {VERSION: "3.6", TOXENV: "py36-mypy"} + - {VERSION: "3.6", TOXENV: "py36-mypy", OS: "ubuntu-20.04"} - {VERSION: "3.9", TOXENV: "docs"} name: "${{ matrix.PYTHON.TOXENV }}" steps: -- cgit v1.2.1