forked from gcovr/gcovr
-
Notifications
You must be signed in to change notification settings - Fork 0
188 lines (164 loc) · 5.41 KB
/
test.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
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test
on:
workflow_dispatch: # For manual triggering
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, edited]
release:
types: [published]
jobs:
milestone-check:
runs-on: ubuntu-22.04
continue-on-error: true
env:
PR_MILESTONE: "${{ github.event.pull_request.milestone.number }}"
steps:
- uses: actions/checkout@v4
- name: Check if PR is assigned to a milestone
if: ${{ github.event_name == 'pull_request' }}
run: |
if [ -z "$PR_MILESTONE" ]; then
echo 'No milestone selected for PR'
exit 1
fi
exit 0
changelog-check:
runs-on: ubuntu-22.04
env:
PR_BODY: "${{ github.event.pull_request.body }}"
CHANGELOG_ISSUE: ":issue:`${{ github.event.pull_request.number }}`"
steps:
- uses: actions/checkout@v4
- name: Check if PR is mentioned in changelog
if: ${{ always() }}
run: |
if [ -z "${{ github.event.pull_request.number }}" ]; then
echo 'No PR defined'
else
if grep -qE '^\[no changelog\]' <<<"$PR_BODY"; then
echo 'Marker "[no changelog]" found in PR body'
if [ "$(grep -F "$CHANGELOG_ISSUE" CHANGELOG.rst)" != "" ]; then
echo "ERROR: $CHANGELOG_ISSUE found in CHANGELOG.rst."
exit 1
else
echo "OK: $CHANGELOG_ISSUE not found in CHANGELOG.rst"
fi
else
echo 'Marker "[no changelog]" not found in PR body'
if [ "$(grep -F "$CHANGELOG_ISSUE" CHANGELOG.rst)" == "" ]; then
echo "ERROR: $CHANGELOG_ISSUE not found in CHANGELOG.rst."
exit 1
else
echo "OK: $CHANGELOG_ISSUE found in CHANGELOG.rst"
fi
fi
fi
exit 0
spell-check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install spellchecker
run:
npm install -g cspell@latest
- name: Run spellchecker
run: |
cspell
host:
needs: [milestone-check, changelog-check, spell-check]
uses: ./.github/workflows/gcovr-ci-job.yml
with:
os: ${{ matrix.os }}
gcc: ${{ matrix.gcc }}
python-version: ${{ matrix.python-version }}
upload-wheel: ${{ matrix.upload-wheel || false }} # Explicit set to false if not set
upload-app: ${{ matrix.upload-app || false }} # Explicit set to false if not set
secrets: inherit
# Testing strategy
# ----------------
#
# We have different axes of the testing matrix:
#
# OS: Linux, Windows
# Compiler: GCC-5 to GCC-14, Clang-10 to CLANG-15
# Python: 3.8 -- 3.12, pypy3
#
# Instead of testing all combinations, we try to achieve full coverage
# across each axis. The main test matrix just represents the Python axis on
# Linux. The OS=Windows and Compiler axis are added manually.
#
# Some cases (Clang compiler) are handled via the Docker-tests.
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]
gcc: [gcc-8]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8']
include:
# Test additional compilers with Linux.
# Note that all compiler versions are also handled via Docker.
- os: ubuntu-20.04
gcc: gcc-9
python-version: '3.9'
- os: ubuntu-22.04
gcc: gcc-11
python-version: '3.12'
upload-wheel: true
upload-app: true
# Test minimum and maximum Python version on Windows.
- os: windows-2019
gcc: gcc
python-version: '3.8'
- os: windows-2019
gcc: gcc
python-version: '3.12'
upload-app: true
# Test minimum and maximum Python version on Mac OS.
- os: macos-12
gcc: gcc
python-version: '3.12'
upload-app: true
- os: macos-13
gcc: gcc
python-version: '3.12'
upload-app: true
- os: macos-14
gcc: gcc
python-version: '3.9'
- os: macos-14
gcc: gcc-13
python-version: '3.12'
upload-app: true
docker:
needs: [milestone-check, changelog-check, spell-check]
uses: ./.github/workflows/gcovr-ci-job.yml
with:
container: true
gcc: ${{ matrix.gcc }}
secrets: inherit
strategy:
fail-fast: false
matrix:
gcc: [gcc-5, gcc-6, gcc-8, gcc-9, gcc-10, gcc-11, gcc-12, gcc-13, gcc-14, clang-10, clang-13, clang-14, clang-15]
upload-release-artifacts:
name: Upload standalone applications as release artifacts
runs-on: ubuntu-22.04
if: github.event_name == 'release'
permissions:
contents: write
needs: [host, docker]
steps:
- name: Download App Artifacts
uses: actions/download-artifact@v4
with:
path: app
pattern: app-*
merge-multiple: true
- name: Upload Release Artifacts
uses: softprops/action-gh-release@v2
with:
files: app/*