Skip to content

Commit 679ec24

Browse files
authored
v4.1.0
2 parents b1e4cb9 + 3a13486 commit 679ec24

12 files changed

+38
-36
lines changed

.github/workflows/ApplicationTesting.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ jobs:
188188
f.write(f"pacboy_packages={' '.join(pacboyPackages)}\n")
189189
190190
- name: '🟦 Setup MSYS2 for ${{ matrix.runtime }}'
191-
if: matrix.system == 'msys2'
192191
uses: msys2/setup-msys2@v2
192+
if: matrix.system == 'msys2'
193193
with:
194194
msystem: ${{ matrix.runtime }}
195195
update: true
@@ -198,8 +198,8 @@ jobs:
198198
${{ inputs.pacboy }}
199199
200200
- name: 🐍 Setup Python ${{ matrix.python }}
201-
if: matrix.system != 'msys2'
202201
uses: actions/setup-python@v5
202+
if: matrix.system != 'msys2'
203203
with:
204204
python-version: ${{ matrix.python }}
205205

.github/workflows/ArtifactCleanUp.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ jobs:
4747

4848
steps:
4949
- name: 🗑️ Delete package Artifacts
50-
if: ${{ ! startsWith(github.ref, 'refs/tags') }}
5150
uses: geekyeggo/delete-artifact@v5
51+
if: ${{ ! startsWith(github.ref, 'refs/tags') }}
5252
with:
5353
name: ${{ inputs.package }}
5454

5555
- name: 🗑️ Delete remaining Artifacts
56-
if: ${{ inputs.remaining != '' }}
5756
uses: geekyeggo/delete-artifact@v5
57+
if: ${{ inputs.remaining != '' }}
5858
with:
5959
name: ${{ inputs.remaining }}

.github/workflows/BuildTheDocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ jobs:
4949
skip-deploy: true
5050

5151
- name: 📤 Upload 'documentation' artifacts
52-
if: inputs.artifact != ''
5352
uses: pyTooling/upload-artifact@v4
53+
if: inputs.artifact != ''
5454
with:
5555
name: ${{ inputs.artifact }}
5656
working-directory: doc/_build/html

.github/workflows/NightlyRelease.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
cat <<EOF >> __NoTeS__.md
176176
177177
--------
178-
Published from [${{ github.workflow }}](https://github.com/Paebbels/ghdl/actions/runs/${{ github.run_id }}) workflow triggered by @${{ github.actor }} on $(date '+%Y-%m-%d %H:%M:%S').
178+
Published from [${{ github.workflow }}](https://github.com/Paebbels/ghdl/actions/runs/${{ github.run_id }}) workflow triggered by @${{ github.actor }} on $(date '+%Y-%m-%d %H:%M:%S %Z').
179179
EOF
180180
181181
printf "%s\n" "Creating release '${{ inputs.nightly_name }}' ... "
@@ -343,12 +343,14 @@ jobs:
343343
if [[ "${asset}" == !*.zip ]]; then
344344
printf "%s\n" "${ANSI_LIGHT_GREEN}[ZIP]${ANSI_NOCOLOR}"
345345
asset="${asset##*!}"
346-
printf " %s\n" "Compressing artifact '${artifact}' to '${asset}' ..."
346+
printf "::group:: %s\n" "Compressing artifact '${artifact}' to '${asset}' ..."
347347
(
348348
cd "${artifact}" && \
349349
zip -r "../${asset}" *
350350
)
351-
if [[ $? -eq 0 ]]; then
351+
retCode=$?
352+
printf "::endgroup::\n"
353+
if [[ $retCode -eq 0 ]]; then
352354
printf " %s\n" "Compression ${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
353355
uploadFile="${asset}"
354356
else
@@ -430,11 +432,11 @@ jobs:
430432
# Add asset to JSON inventory
431433
if [[ "${{ inputs.inventory-json }}" != "" ]]; then
432434
if [[ "${categories}" != "${title}" ]]; then
433-
printf " %s\n" "adding file '${uploadFile}' with '${categories//;/ → }' to JSON inventory ..."
435+
printf " %s\n" "adding file '${uploadFile#*/}' with '${categories//;/ → }' to JSON inventory ..."
434436
category=""
435437
jsonEntry=$(jq -c -n \
436438
--arg title "${title}" \
437-
--arg file "${uploadFile}" \
439+
--arg file "${uploadFile#*/}" \
438440
'{"file": $file, "title": $title}' \
439441
)
440442
@@ -450,7 +452,7 @@ jobs:
450452
'$inventory * {"files": $file}' \
451453
)
452454
else
453-
printf " %s\n" "adding file '${uploadFile}' to JSON inventory ... ${ANSI_LIGHT_YELLOW}[SKIPPED]${ANSI_NOCOLOR}"
455+
printf " %s\n" "adding file '${uploadFile#*/}' to JSON inventory ... ${ANSI_LIGHT_YELLOW}[SKIPPED]${ANSI_NOCOLOR}"
454456
fi
455457
fi
456458

.github/workflows/PublishCoverageResults.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
lfs: true
7777
submodules: true
7878

79-
- name: Download Artifacts
79+
- name: 📥 Download Artifacts
8080
uses: pyTooling/download-artifact@v4
8181
with:
8282
pattern: ${{ inputs.coverage_artifacts_pattern }}
@@ -178,39 +178,39 @@ jobs:
178178
tree -pash report/coverage/html
179179
180180
- name: 📤 Upload 'Coverage SQLite Database' artifact
181+
uses: pyTooling/upload-artifact@v4
181182
if: inputs.coverage_sqlite_artifact != ''
182183
continue-on-error: true
183-
uses: pyTooling/upload-artifact@v4
184184
with:
185185
name: ${{ inputs.coverage_sqlite_artifact }}
186186
path: .coverage
187187
if-no-files-found: error
188188
retention-days: 1
189189

190190
- name: 📤 Upload 'Coverage XML Report' artifact
191+
uses: pyTooling/upload-artifact@v4
191192
if: inputs.coverage_xml_artifact != ''
192193
continue-on-error: true
193-
uses: pyTooling/upload-artifact@v4
194194
with:
195195
name: ${{ inputs.coverage_xml_artifact }}
196196
path: ${{ steps.getVariables.outputs.coverage_report_xml }}
197197
if-no-files-found: error
198198
retention-days: 1
199199

200200
- name: 📤 Upload 'Coverage JSON Report' artifact
201+
uses: pyTooling/upload-artifact@v4
201202
if: inputs.coverage_json_artifact != ''
202203
continue-on-error: true
203-
uses: pyTooling/upload-artifact@v4
204204
with:
205205
name: ${{ inputs.coverage_json_artifact }}
206206
path: ${{ steps.getVariables.outputs.coverage_report_json }}
207207
if-no-files-found: error
208208
retention-days: 1
209209

210210
- name: 📤 Upload 'Coverage HTML Report' artifact
211+
uses: pyTooling/upload-artifact@v4
211212
if: inputs.coverage_html_artifact != ''
212213
continue-on-error: true
213-
uses: pyTooling/upload-artifact@v4
214214
with:
215215
name: ${{ inputs.coverage_html_artifact }}
216216
working-directory: ${{ steps.getVariables.outputs.coverage_report_html_directory }}
@@ -219,18 +219,18 @@ jobs:
219219
retention-days: 1
220220

221221
- name: 📊 Publish code coverage at CodeCov
222+
uses: codecov/codecov-action@v5
222223
if: inputs.CodeCov == true
223224
continue-on-error: true
224-
uses: codecov/codecov-action@v5
225225
with:
226226
files: ${{ steps.getVariables.outputs.coverage_report_xml }}
227227
flags: unittests
228228
env_vars: PYTHON
229229

230230
- name: 📉 Publish code coverage at Codacy
231+
uses: codacy/codacy-coverage-reporter-action@v1
231232
if: inputs.Codacy == true
232233
continue-on-error: true
233-
uses: codacy/codacy-coverage-reporter-action@v1
234234
with:
235235
project-token: ${{ secrets.codacy_token }}
236236
coverage-reports: ${{ steps.getVariables.outputs.coverage_report_xml }}

.github/workflows/PublishTestResults.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: ⏬ Checkout repository
6666
uses: actions/checkout@v4
6767

68-
- name: Download Artifacts
68+
- name: 📥 Download Artifacts
6969
uses: pyTooling/download-artifact@v4
7070
with:
7171
pattern: ${{ inputs.unittest_artifacts_pattern }}
@@ -82,7 +82,7 @@ jobs:
8282
- name: Rename JUnit files and move them all into 'junit/'
8383
run: |
8484
mkdir -p junit
85-
find artifacts/ -type f -path "*TestReportSummary*.xml" -exec sh -c 'cp -v $0 "junit/$(basename $(dirname $0)).$(basename $0)"' {} ';'
85+
find artifacts/ -type f -path "*.xml" -exec sh -c 'cp -v $0 "junit/$(basename $(dirname $0)).$(basename $0)"' {} ';'
8686
tree -pash junit
8787
8888
- name: 🔁 Merge JUnit Unit Test Summaries
@@ -100,8 +100,8 @@ jobs:
100100
reporter: java-junit
101101

102102
- name: 📤 Upload merged 'JUnit Test Summary' artifact
103-
if: inputs.merged_junit_artifact != ''
104103
uses: pyTooling/upload-artifact@v4
104+
if: inputs.merged_junit_artifact != ''
105105
with:
106106
name: ${{ inputs.merged_junit_artifact }}
107107
path: Unittesting.xml

.github/workflows/PublishToGitHubPages.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ jobs:
6262
path: public
6363

6464
- name: 📥 Download artifacts '${{ inputs.coverage }}' from 'Coverage' job
65-
if: ${{ inputs.coverage != '' }}
6665
uses: pyTooling/download-artifact@v4
66+
if: ${{ inputs.coverage != '' }}
6767
with:
6868
name: ${{ inputs.coverage }}
6969
path: public/coverage
7070

7171
- name: 📥 Download artifacts '${{ inputs.typing }}' from 'StaticTypeCheck' job
72-
if: ${{ inputs.typing != '' }}
7372
uses: pyTooling/download-artifact@v4
73+
if: ${{ inputs.typing != '' }}
7474
with:
7575
name: ${{ inputs.typing }}
7676
path: public/typing

.github/workflows/Release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ jobs:
4949
echo "datetime=${RELEASE_DATETIME}" >> $GITHUB_OUTPUT
5050
5151
- name: 📑 Create Release Page
52-
id: createReleasePage
5352
uses: actions/create-release@v1
53+
id: createReleasePage
5454
env:
5555
GITHUB_TOKEN: ${{ github.token }}
5656
with:

.github/workflows/SphinxDocumentation.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,15 @@ jobs:
100100
python -m pip install --disable-pip-version-check ${{ inputs.requirements }}
101101
102102
- name: 📥 Download artifacts '${{ inputs.unittest_xml_artifact }}' from 'Unittesting' job
103-
if: inputs.unittest_xml_artifact != ''
104103
uses: pyTooling/download-artifact@v4
104+
if: inputs.unittest_xml_artifact != ''
105105
with:
106106
name: ${{ inputs.unittest_xml_artifact }}
107107
path: ${{ inputs.unittest_xml_directory }}
108108

109109
- name: 📥 Download artifacts '${{ inputs.coverage_json_artifact }}' from 'PublishCoverageResults' job
110-
if: inputs.coverage_json_artifact != ''
111110
uses: pyTooling/download-artifact@v4
111+
if: inputs.coverage_json_artifact != ''
112112
with:
113113
name: ${{ inputs.coverage_json_artifact }}
114114
path: ${{ inputs.coverage_report_json_directory }}
@@ -122,9 +122,9 @@ jobs:
122122
sphinx-build -v -n -b html -d _build/doctrees -j $(nproc) -w _build/html.log . _build/html
123123
124124
- name: 📤 Upload 'HTML Documentation' artifact
125+
uses: pyTooling/upload-artifact@v4
125126
if: inputs.html_artifact != ''
126127
continue-on-error: true
127-
uses: pyTooling/upload-artifact@v4
128128
with:
129129
name: ${{ inputs.html_artifact }}
130130
working-directory: ${{ inputs.doc_directory }}/_build/html
@@ -157,15 +157,15 @@ jobs:
157157
python -m pip install --disable-pip-version-check ${{ inputs.requirements }}
158158
159159
- name: 📥 Download artifacts '${{ inputs.unittest_xml_artifact }}' from 'Unittesting' job
160-
if: inputs.unittest_xml_artifact != ''
161160
uses: pyTooling/download-artifact@v4
161+
if: inputs.unittest_xml_artifact != ''
162162
with:
163163
name: ${{ inputs.unittest_xml_artifact }}
164164
path: ${{ inputs.unittest_xml_directory }}
165165

166166
- name: 📥 Download artifacts '${{ inputs.coverage_json_artifact }}' from 'PublishCoverageResults' job
167-
if: inputs.coverage_json_artifact != ''
168167
uses: pyTooling/download-artifact@v4
168+
if: inputs.coverage_json_artifact != ''
169169
with:
170170
name: ${{ inputs.coverage_json_artifact }}
171171
path: ${{ inputs.coverage_report_json_directory }}
@@ -263,9 +263,9 @@ jobs:
263263
done
264264
265265
- name: 📤 Upload 'LaTeX Documentation' artifact
266+
uses: pyTooling/upload-artifact@v4
266267
if: inputs.latex_artifact != ''
267268
continue-on-error: true
268-
uses: pyTooling/upload-artifact@v4
269269
with:
270270
name: ${{ inputs.latex_artifact }}
271271
working-directory: ${{ inputs.doc_directory }}/_build/latex

.github/workflows/StaticTypeCheck.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ jobs:
8787
run: ${{ inputs.commands }}
8888

8989
- name: 📤 Upload 'Static Typing Report' HTML artifact
90+
uses: pyTooling/upload-artifact@v4
9091
if: ${{ inputs.html_artifact != '' }}
9192
continue-on-error: true
92-
uses: pyTooling/upload-artifact@v4
9393
with:
9494
name: ${{ inputs.html_artifact }}
9595
working-directory: ${{ inputs.html_report }}
@@ -98,9 +98,9 @@ jobs:
9898
retention-days: 1
9999

100100
- name: 📤 Upload 'Static Typing Report' JUnit artifact
101+
uses: pyTooling/upload-artifact@v4
101102
if: ${{ inputs.junit_artifact != '' }}
102103
continue-on-error: true
103-
uses: pyTooling/upload-artifact@v4
104104
with:
105105
name: ${{ inputs.junit_artifact }}
106106
path: ${{ inputs.junit_report }}

.github/workflows/UnitTesting.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,8 @@ jobs:
282282
# Python setup
283283

284284
- name: '🟦 Setup MSYS2 for ${{ matrix.runtime }}'
285-
if: matrix.system == 'msys2'
286285
uses: msys2/setup-msys2@v2
286+
if: matrix.system == 'msys2'
287287
with:
288288
msystem: ${{ matrix.runtime }}
289289
update: true
@@ -292,8 +292,8 @@ jobs:
292292
${{ inputs.pacboy }}
293293
294294
- name: 🐍 Setup Python ${{ matrix.python }}
295-
if: matrix.system != 'msys2'
296295
uses: actions/setup-python@v5
296+
if: matrix.system != 'msys2'
297297
with:
298298
python-version: ${{ matrix.python }}
299299

@@ -392,9 +392,9 @@ jobs:
392392
# Upload artifacts
393393

394394
- name: 📤 Upload '${{ inputs.unittest_report_xml_filename }}' artifact
395+
uses: pyTooling/upload-artifact@v4
395396
if: inputs.unittest_xml_artifact != ''
396397
continue-on-error: true
397-
uses: pyTooling/upload-artifact@v4
398398
with:
399399
name: ${{ inputs.unittest_xml_artifact }}-${{ matrix.system }}-${{ matrix.runtime }}-${{ matrix.python }}
400400
working-directory: ${{ inputs.unittest_report_xml_directory }}

doc/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ sphinxcontrib-mermaid ~= 1.0
1515
autoapi >= 2.0.1
1616
sphinx_design ~= 0.6.1
1717
sphinx-copybutton >= 0.5.2
18-
sphinx_autodoc_typehints ~= 2.5
18+
sphinx_autodoc_typehints ~= 3.0
1919
sphinx_reports ~= 0.7

0 commit comments

Comments
 (0)