-
Notifications
You must be signed in to change notification settings - Fork 134
/
azure-pipelines.yml
157 lines (132 loc) · 4.26 KB
/
azure-pipelines.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# Test a Django project on multiple versions of Python.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
# NOTES:
#
# Display name of each step should be prefixed with one of the following:
# CR-QC: for quality control measures.
# CR-BUILD: for build-related tasks.
# CR-DEPLOY: for publication or deployment.
# [no prefix]: for unrelated CI setup/tooling.
#
# Use PowerShell Core for any utility scripts so they are re-usable across
# Windows, macOS, and Linux.
trigger:
- main
stages:
- stage: Unit_Tests
displayName: Unit Tests
jobs:
- job: pytest
displayName: pytest
pool:
vmImage: 'ubuntu-latest'
strategy:
matrix:
py3.9:
PYTHON_VERSION: '3.9'
WAGTAIL_VERSION: '6.3.*'
TEMPLATE: 'basic'
py3.10:
PYTHON_VERSION: '3.10'
WAGTAIL_VERSION: '6.3.*'
TEMPLATE: 'basic'
py3.11:
PYTHON_VERSION: '3.11'
WAGTAIL_VERSION: '6.3.*'
TEMPLATE: 'basic'
py3.12:
PYTHON_VERSION: '3.12'
WAGTAIL_VERSION: '6.3.*'
TEMPLATE: 'basic'
py3.13_basic:
PYTHON_VERSION: '3.13'
WAGTAIL_VERSION: '6.3.*'
TEMPLATE: 'basic'
py3.13_pro:
PYTHON_VERSION: '3.13'
WAGTAIL_VERSION: '6.3.*'
TEMPLATE: 'pro'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python version'
inputs:
versionSpec: '$(PYTHON_VERSION)'
architecture: 'x64'
- script: python -m pip install -r requirements-ci.txt wagtail==$(WAGTAIL_VERSION)
displayName: 'CR-QC: Install coderedcms from local repo'
- script: coderedcms start testproject --template $(TEMPLATE)
displayName: 'CR-QC: Create starter project from template'
- script: |
cd testproject/
python -m pip install -r requirements-dev.txt
python manage.py makemigrations --check
displayName: 'CR-QC: Check migrations'
- pwsh: ./ci/run-tests.ps1
displayName: 'CR-QC: Run unit tests'
- task: PublishTestResults@2
displayName: 'Publish unit test report'
condition: succeededOrFailed()
inputs:
testResultsFiles: '**/test-*.xml'
testRunTitle: 'Publish test results for Python $(python.version)'
- task: PublishCodeCoverageResults@2
displayName: 'Publish code coverage report'
condition: succeededOrFailed()
inputs:
summaryFileLocation: '$(System.DefaultWorkingDirectory)/coverage.xml'
- stage: Static_Analysis
displayName: Static Analysis
dependsOn: Unit_Tests
condition: succeeded('Unit_Tests')
jobs:
- job: linters
displayName: Linters
pool:
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python version'
inputs:
versionSpec: '3.13'
architecture: 'x64'
- script: python -m pip install -r requirements-ci.txt
displayName: 'CR-QC: Install coderedcms from local repo'
- pwsh: ./ci/spellcheck.ps1
displayName: 'CR-QC: Spelling'
- script: ruff format --check .
displayName: 'CR-QC: Ruff Format'
- script: ruff check .
displayName: 'CR-QC: Ruff Check'
- job: codecov
displayName: Code Coverage
pool:
vmImage: 'ubuntu-latest'
steps:
- task: DownloadBuildArtifacts@0
displayName: 'Download code coverage from current build'
inputs:
buildType: 'current'
project: '$(System.TeamProjectId)'
pipeline: '$(System.DefinitionId)'
downloadType: 'specific'
downloadPath: '$(Agent.WorkFolder)/current-artifacts'
- pwsh: ./ci/compare-codecov.ps1 -wd $Env:WorkDir
displayName: 'CR-QC: Compare code coverage'
failOnStderr: false
env:
WorkDir: $(Agent.WorkFolder)
- job: docs
displayName: Documentation
pool:
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python version'
inputs:
versionSpec: '3.13'
architecture: 'x64'
- script: python -m pip install -r requirements-ci.txt
displayName: 'CR-QC: Install coderedcms from local repo'
- pwsh: ./ci/make-docs.ps1
displayName: 'CR-QC: Build documentation'