-
Notifications
You must be signed in to change notification settings - Fork 1
143 lines (142 loc) · 4.53 KB
/
ci.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
name: CI
on:
pull_request:
push:
branches: main
defaults:
run:
shell: bash
concurrency:
group: CI-${{ github.ref }}
# Queue on all branches and tags, but only cancel overlapping PR burns.
cancel-in-progress: ${{ github.ref != 'refs/heads/main' || !startsWith(github.ref, 'refs/tags/') }}
jobs:
org-check:
name: Check GitHub Organization
if: github.repository_owner == 'jsirois'
runs-on: ubuntu-24.04
steps:
- name: Noop
run: "true"
checks:
name: TOXENV=${{ matrix.tox-env }}
needs: org-check
runs-on: ubuntu-24.04
strategy:
matrix:
include:
- check-name: Lint
python-version: 3.9
tox-env: lint
- check-name: Types
python-version: 3.9
tox-env: check
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
- name: Check ${{ matrix.check-name }}
uses: pantsbuild/actions/run-tox@b16b9cf47cd566acfe217b1dafc5b452e27e6fd7
with:
tox-env: ${{ matrix.tox-env }}
unit-tests-legacy:
name: (${{ matrix.os }}) TOXENV=py${{ matrix.python-version[0] }}${{ matrix.python-version[1] }}
needs: org-check
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- python-version: [2, 7, 18]
os: ubuntu-24.04
- python-version: [3, 5, 10]
os: ubuntu-24.04
- python-version: [3, 6, 15]
os: ubuntu-24.04
- python-version: [3, 7, 17]
os: ubuntu-24.04
- python-version: [3, 8, 18]
os: ubuntu-24.04
- python-version: [2, 7, 18]
os: macos-13
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python Build Deps
if: matrix.os == 'ubuntu-24.04'
run: |
sudo apt update &&
sudo apt install -y \
build-essential \
libssl-dev \
zlib1g-dev \
libbz2-dev \
libreadline-dev \
libsqlite3-dev \
curl \
git \
libncursesw5-dev \
xz-utils \
tk-dev \
libxml2-dev \
libxmlsec1-dev \
libffi-dev \
liblzma-dev
- name: Setup Python ${{ join(matrix.python-version, '.') }}
id: pyenv
# Upgrade node16 -> node20: Out for review here:
# https://github.com/gabrielfalcao/pyenv-action/pull/444
uses: pex-tool/pyenv-action@baec18679698d2f80064cc04eb9ad0c8dc5ca8f8
with:
default: "${{ join(matrix.python-version, '.') }}"
- name: Run Unit Tests
run: |
alias python="${{ steps.pyenv.outputs.pyenv_root }}/versions/${{ join(matrix.python-version, '.') }}/bin/python"
python -V
pyver = "${{ matrix.python-version[0] }}.${{ matrix.python-version[1] }}"
if [[ "3.8" == "${pyver}" ]]; then
python -mensurepip -U
else
curl -fLO https://bootstrap.pypa.io/pip/${pyver}/get-pip.py
python get-pip.py
rm get-pip.py
fi
python -mpip install -U tox
python -mtox -epy${{ matrix.python-version[0] }}${{ matrix.python-version[1] }} -- -vvs
unit-tests:
name: (${{ matrix.os }}) TOXENV=py${{ matrix.python-version[0] }}${{ matrix.python-version[1] }}
needs: org-check
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-24.04
python-version: [3, 9]
- os: ubuntu-24.04
python-version: [3, 10]
- os: ubuntu-24.04
python-version: [3, 11]
- os: ubuntu-24.04
python-version: [3, 12]
- os: ubuntu-24.04
python-version: [3, 13]
- os: ubuntu-24.04
python-version: [3, 14, "0-alpha.1"]
- os: macos-13
python-version: [3, 13]
- os: macos-13
python-version: [3, 14, "0-alpha.1"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python ${{ join(matrix.python-version, '.') }}
uses: actions/setup-python@v5
with:
python-version: "${{ join(matrix.python-version, '.') }}"
- name: Run Unit Tests
run: |
pip install -U pip
pip install -U tox
tox -epy${{ matrix.python-version[0] }}${{ matrix.python-version[1] }} -- -vvs