forked from urllib3/urllib3
-
-
Notifications
You must be signed in to change notification settings - Fork 5
60 lines (45 loc) · 1.4 KB
/
ci-dead-things.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: CI for EOL 3rd parties
on:
push:
branches:
- main
pull_request:
permissions: "read-all"
concurrency:
group: ci-dead-things-${{ github.ref_name }}
cancel-in-progress: true
jobs:
dead-libressl:
name: Ensure LibreSSL <2.8
runs-on: ubuntu-latest
timeout-minutes: 25
continue-on-error: true
steps:
- name: "Checkout repository"
uses: "actions/checkout@d632683dd7b4114ad314bca15554477dd762a938"
- name: "Run against Python 3.7 built with LibreSSL 2.7.4"
run: ./ci/run_legacy_libressl.sh
dead-openssl:
name: Ensure OpenSSL <1.1.1
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- name: "Checkout repository"
uses: "actions/checkout@d632683dd7b4114ad314bca15554477dd762a938"
- name: "Run against Python 3.7 built with OpenSSL 1.0.2q"
run: ./ci/run_legacy_openssl.sh
dead-pip:
name: Ensure pip <21.2.4
runs-on: ubuntu-20.04
timeout-minutes: 5
steps:
- name: "Checkout repository"
uses: "actions/checkout@d632683dd7b4114ad314bca15554477dd762a938"
- name: "Setup Python"
uses: "actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3"
with:
python-version: "3.7"
- name: "Enforce pip 20.x"
run: python -m pip install "pip<21"
- name: "Ensure that urllib3-future can be installed"
run: python -m pip install .