-
Notifications
You must be signed in to change notification settings - Fork 1
233 lines (201 loc) · 6.45 KB
/
Copy pathdeploy.yaml
File metadata and controls
233 lines (201 loc) · 6.45 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
name: Build and upload to PyPI
on:
push:
tags:
- "*"
release:
types:
- published
concurrency:
group: "${{ github.ref }}-${{ github.head_ref }}-${{ github.workflow }}"
cancel-in-progress: false
defaults:
run:
shell: bash -l {0}
jobs:
build:
name: Build package
runs-on: ubuntu-latest
outputs:
version: ${{ steps.extract-version.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build package (wheel and sdist)
run: python -m build
- name: Check package
run: twine check dist/*
- name: Extract package version
id: extract-version
run: |
WHEEL_FILE=$(ls dist/*.whl)
VERSION=$(basename "$WHEEL_FILE" | sed -n 's/multibind-\([^-]*\)-.*/\1/p')
if [ -z "$VERSION" ]; then
python -m pip install --upgrade pip
pip install "$WHEEL_FILE" --quiet
VERSION=$(python -c "import multibind; print(multibind.__version__)")
pip uninstall -y multibind --quiet
fi
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
echo "Extracted version: $VERSION"
- name: Upload dist files
uses: actions/upload-artifact@v7
with:
name: dist-files
path: dist/
retention-days: 1
test-pytest:
name: Run tests
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout repository for test files
uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Download dist files
uses: actions/download-artifact@v7
with:
name: dist-files
path: dist/
- name: Install wheel with test extras
run: |
python -m pip install --upgrade pip
WHEEL_FILE=$(ls dist/*.whl)
pip install "${WHEEL_FILE}[test]"
- name: Test import
run: |
python -c "import multibind; print(f'Package {multibind.__version__} imported successfully')"
- name: Run tests
run: |
cd tests && pytest --verbose
deploy-testpypi:
name: Deploy to TestPyPI
runs-on: ubuntu-latest
needs: [build, test-pytest]
if: |
github.repository == 'BecksteinLab/multibind' &&
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/'))
environment:
name: testpypi
url: https://test.pypi.org/p/multibind
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- name: Download dist files
uses: actions/download-artifact@v7
with:
name: dist-files
path: dist/
- name: Publish to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
deploy-pypi:
name: Deploy to PyPI
runs-on: ubuntu-latest
needs: [build, test-pytest]
if: |
github.repository == 'BecksteinLab/multibind' &&
(github.event_name == 'release' && github.event.action == 'published')
environment:
name: pypi
url: https://pypi.org/p/multibind
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- name: Download dist files
uses: actions/download-artifact@v7
with:
name: dist-files
path: dist/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
test-deployed-testpypi:
name: Test deployed package (TestPyPI)
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
needs: [build, deploy-testpypi]
if: |
github.repository == 'BecksteinLab/multibind' &&
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/'))
steps:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Checkout repository for actions
uses: actions/checkout@v6
- name: Wait for version to be available on TestPyPI
uses: ./.github/actions/wait-for-pypi-version
with:
repository: testpypi
package: multibind
version: ${{ needs.build.outputs.version }}
- name: Install from TestPyPI
run: |
python -m pip install --upgrade pip
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "multibind[test]==${{ needs.build.outputs.version }}"
- name: Test import
run: |
python -c "import multibind; print(f'Package {multibind.__version__} imported successfully from TestPyPI')"
- name: Run tests
run: |
git clone --depth 1 https://github.com/${{ github.repository }}.git _src
cd _src/tests/
pytest -v
test-deployed-pypi:
name: Test deployed package (PyPI)
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
needs: [build, deploy-pypi]
if: |
github.repository == 'BecksteinLab/multibind' &&
(github.event_name == 'release' && github.event.action == 'published')
steps:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Checkout repository for actions
uses: actions/checkout@v6
- name: Wait for version to be available on PyPI
uses: ./.github/actions/wait-for-pypi-version
with:
repository: pypi
package: multibind
version: ${{ needs.build.outputs.version }}
- name: Install from PyPI
run: |
python -m pip install --upgrade pip
pip install "multibind[test]==${{ needs.build.outputs.version }}"
- name: Test import
run: |
python -c "import multibind; print(f'Package {multibind.__version__} imported successfully from PyPI')"
- name: Run tests
run: |
git clone --depth 1 https://github.com/${{ github.repository }}.git _src
cd _src/tests/
pytest -v