summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorQuentin Pradet <quentin.pradet@gmail.com>2022-11-08 16:32:08 +0400
committerGitHub <noreply@github.com>2022-11-08 06:32:08 -0600
commitdda8edfafe7d6b908877fb00c0022a47d6d1f209 (patch)
treee8bcfa9ab119de7e6f5603baf9390bcfc7bd4fe3 /.github
parente956a4249d50b3eedab54d7c3a5cab59edae7f6b (diff)
downloadurllib3-dda8edfafe7d6b908877fb00c0022a47d6d1f209.tar.gz
Fix CI by temporarily reverting to macOS 11
See: https://github.com/urllib3/urllib3/issues/2770
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 89c8141a..b3865dc8 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -38,7 +38,7 @@ jobs:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
os:
- - macos-latest
+ - macos-11
- windows-latest
- ubuntu-20.04 # OpenSSL 1.1.1
- ubuntu-22.04 # OpenSSL 3.0
@@ -83,7 +83,7 @@ jobs:
os: ubuntu-22.04
runs-on: ${{ matrix.os }}
- name: ${{ fromJson('{"macos-latest":"macOS","windows-latest":"Windows","ubuntu-latest":"Ubuntu","ubuntu-20.04":"Ubuntu 20.04 (OpenSSL 1.1.1)","ubuntu-22.04":"Ubuntu 22.04 (OpenSSL 3.0)"}')[matrix.os] }} ${{ matrix.python-version }} ${{ matrix.nox-session}}
+ name: ${{ fromJson('{"macos-11":"macOS","windows-latest":"Windows","ubuntu-latest":"Ubuntu","ubuntu-20.04":"Ubuntu 20.04 (OpenSSL 1.1.1)","ubuntu-22.04":"Ubuntu 22.04 (OpenSSL 3.0)"}')[matrix.os] }} ${{ matrix.python-version }} ${{ matrix.nox-session}}
continue-on-error: ${{ matrix.experimental }}
timeout-minutes: 20
steps: