-
Notifications
You must be signed in to change notification settings - Fork 9
419 lines (348 loc) · 12.5 KB
/
python-app.yaml
File metadata and controls
419 lines (348 loc) · 12.5 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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
name: Python Package CI/CD
on:
push:
branches: [main] # Only main branch
tags: ['v*.*.*']
pull_request:
branches: [main, 'dev*', 'dev/**', 'feature/**']
types: [opened, synchronize, reopened]
paths-ignore:
- 'docs/**'
- '*.md'
- 'README*'
workflow_dispatch: # Allow manual triggering
# Set permissions for security
permissions:
contents: read
# Cancel previous runs on new push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
PYTHON_VERSION: "3.11"
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v5
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
version: "0.8.19"
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install Ruff
run: |
uvx ruff --version
- name: Run Ruff Linting
run: |
echo "::group::Ruff Linting"
uvx ruff check . --output-format=github
echo "::endgroup::"
- name: Run Ruff Formatting Check
run: |
echo "::group::Ruff Formatting"
uvx ruff format --check --diff .
echo "::endgroup::"
test:
runs-on: ubuntu-24.04
timeout-minutes: 30
needs: lint # Run tests only after linting passes
strategy:
fail-fast: false # Continue testing other Python versions if one fails
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- name: Check out code
uses: actions/checkout@v5
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
version: "0.8.19"
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv pip install --system .[dev]
- name: Run tests
run: pytest -v --numprocesses=auto
test-examples:
runs-on: ubuntu-24.04
timeout-minutes: 45
needs: lint
# Only run examples on releases (tags)
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Check out code
uses: actions/checkout@v5
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
version: "0.8.19"
enable-cache: true
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
uv pip install --system .[dev]
- name: Run example tests
run: pytest -v -p no:warnings -m examples
security:
name: Security Scan
runs-on: ubuntu-24.04
needs: lint
steps:
- name: Check out code
uses: actions/checkout@v5
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
version: "0.8.19"
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Run Bandit security scan
run: |
# Gate on HIGH severity & MEDIUM confidence; produce JSON artifact
uvx bandit -r flixopt/ -c pyproject.toml -f json -o bandit-report.json -q --severity-level high --confidence-level medium
# Human-readable output without affecting job status
uvx bandit -r flixopt/ -c pyproject.toml -q --exit-zero
- name: Upload security reports
uses: actions/upload-artifact@v4
if: always()
with:
name: security-report
path: bandit-report.json
retention-days: 30
create-release:
name: Create GitHub Release
runs-on: ubuntu-24.04
permissions:
contents: write
needs: [lint, test, test-examples, security]
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
version: "0.8.19"
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Extract release notes
run: |
VERSION=${GITHUB_REF#refs/tags/v}
echo "Extracting release notes for version: $VERSION"
python scripts/extract_release_notes.py $VERSION > current_release_notes.md
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
body_path: current_release_notes.md
draft: false
prerelease: ${{ contains(github.ref, 'alpha') || contains(github.ref, 'beta') || contains(github.ref, 'rc') }}
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish-testpypi:
name: Publish to TestPyPI
runs-on: ubuntu-24.04
needs: [test, test-examples, create-release] # Run after tests and release creation
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') # Only on tag push
environment:
name: testpypi
url: https://test.pypi.org/p/flixopt
env:
SKIP_TESTPYPI_UPLOAD: "false"
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
version: "0.8.19"
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
uv pip install --system twine
- name: Build the distribution
run: |
uv build
- name: Upload to TestPyPI
run: |
twine upload --repository-url https://test.pypi.org/legacy/ dist/* --verbose --skip-existing
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
TWINE_NON_INTERACTIVE: "1"
- name: Test install from TestPyPI
if: env.SKIP_TESTPYPI_UPLOAD != 'true'
run: |
set -Eeuo pipefail
# Create a temporary environment to test installation
uv venv test_env
source test_env/bin/activate
# Get project name from pyproject.toml (PEP 621)
PACKAGE_NAME=$(python - <<'PY'
import sys, tomllib, pathlib
data = tomllib.loads(pathlib.Path("pyproject.toml").read_text(encoding="utf-8"))
print(data["project"]["name"])
PY
)
# Extract version from git tag
VERSION=${GITHUB_REF#refs/tags/v}
# Wait and retry while TestPyPI indexes the package
INSTALL_SUCCESS=false
for d in 10 20 40 80 120; do
sleep "$d"
echo "Attempting to install $PACKAGE_NAME==$VERSION from TestPyPI (retry after ${d}s)..."
# Install specific version and verify it matches
if uv pip install --index-strategy unsafe-best-match --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "$PACKAGE_NAME==$VERSION" && \
python -c "from importlib.metadata import version; installed = version('$PACKAGE_NAME'); print(f'Installed: {installed}'); assert '$VERSION' == installed"; then
INSTALL_SUCCESS=true
break
fi
done
# Check if installation succeeded
if [ "$INSTALL_SUCCESS" = "false" ]; then
echo "ERROR: Failed to install $PACKAGE_NAME==$VERSION from TestPyPI after all retries"
echo "This could indicate:"
echo " - TestPyPI indexing issues"
echo " - Package upload problems"
echo " - Version mismatch between tag and package"
exit 1
fi
# Final success confirmation
python -c "import flixopt; print('TestPyPI installation successful!')"
publish-pypi:
name: Publish to PyPI
runs-on: ubuntu-24.04
needs: [publish-testpypi] # Only run after TestPyPI publish succeeds
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') # Only on tag push
environment:
name: pypi
url: https://pypi.org/p/flixopt
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
version: "0.8.19"
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
uv pip install --system twine
- name: Build the distribution
run: |
uv build
- name: Upload to PyPI
run: |
twine upload dist/* --verbose --skip-existing
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
TWINE_NON_INTERACTIVE: "1"
- name: Verify PyPI installation
run: |
set -Eeuo pipefail
# Create a temporary environment to test installation
uv venv prod_test_env
source prod_test_env/bin/activate
# Get project name from pyproject.toml (PEP 621)
PACKAGE_NAME=$(python - <<'PY'
import sys, tomllib, pathlib
data = tomllib.loads(pathlib.Path("pyproject.toml").read_text(encoding="utf-8"))
print(data["project"]["name"])
PY
)
# Extract version from git tag
VERSION=${GITHUB_REF#refs/tags/v}
# Wait and retry while PyPI indexes the package
INSTALL_SUCCESS=false
for d in 10 20 40 80 120 240 480; do
sleep "$d"
echo "Attempting to install $PACKAGE_NAME==$VERSION from PyPI (retry after ${d}s)..."
# Install specific version and verify it matches
if uv pip install "$PACKAGE_NAME==$VERSION" && \
python -c "from importlib.metadata import version; installed = version('$PACKAGE_NAME'); print(f'Installed: {installed}'); assert '$VERSION' == installed"; then
INSTALL_SUCCESS=true
break
fi
done
# Check if installation succeeded
if [ "$INSTALL_SUCCESS" = "false" ]; then
echo "ERROR: Failed to install $PACKAGE_NAME==$VERSION from PyPI after all retries"
echo "This could indicate:"
echo " - PyPI indexing issues"
echo " - Package upload problems"
echo " - Version mismatch between tag and package"
exit 1
fi
# Final success confirmation
python -c "import flixopt; print('PyPI installation successful!')"
deploy-docs:
name: Deploy Documentation
runs-on: ubuntu-24.04
permissions:
contents: write
needs: [publish-pypi] # Deploy docs after successful PyPI publishing
if: startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, 'alpha') && !contains(github.ref, 'beta') && !contains(github.ref, 'rc')
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
fetch-depth: 0 # Fetch all history for proper versioning
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
version: "0.8.19"
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Extract changelog to docs
run: |
# Install packaging dependency for changelog extraction
uv pip install --system packaging
# Extract individual release files
python scripts/extract_changelog.py
echo "✅ Extracted changelog to docs/changelog/"
- name: Install documentation dependencies
run: |
uv pip install --system ".[docs]"
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- name: Deploy docs
run: |
VERSION=${GITHUB_REF#refs/tags/v}
echo "Deploying docs after successful PyPI publish: $VERSION"
mike deploy --push --update-aliases $VERSION latest
mike set-default --push latest