Skip to content

Commit 68e1204

Browse files
committed
LaTeX may fail.
1 parent 23e4b09 commit 68e1204

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

.github/workflows/Pipeline.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
Prepare:
9-
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r5
9+
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r6
1010
with:
1111
main_branch: 'master'
1212
release_branch: 'master'
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
include:
20-
- { simulator: 'nvc', backend: '', version: 'latest', can-fail: true }
20+
- { simulator: 'nvc', backend: '', version: 'latest', can-fail: false }
2121
- { simulator: 'ghdl', backend: 'mcode', version: 'latest', can-fail: false }
2222
- { simulator: 'ghdl', backend: 'llvm', version: 'latest', can-fail: false }
2323
with:
@@ -28,7 +28,7 @@ jobs:
2828
can-fail: ${{ matrix.can-fail }}
2929

3030
PublishTestResults:
31-
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r5
31+
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r6
3232
needs:
3333
- Simulate
3434
# if: success() || failure()
@@ -68,7 +68,7 @@ jobs:
6868
PoC-Report-XML-*
6969
7070
Documentation:
71-
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r5
71+
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r6
7272
needs:
7373
- PublishTestResults
7474
# if: success() || failure()
@@ -96,14 +96,15 @@ jobs:
9696
uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@dev
9797
needs:
9898
- Documentation
99-
# if: (success() || failure()) && needs.Documentation.result == 'success'
99+
if: (success() || failure()) && needs.Documentation.result == 'success'
100100
with:
101101
document: 'The PoC-Library'
102102
latex_artifact: 'PoC-LaTeX'
103103
pdf_artifact: 'PoC-PDF'
104+
can-fail: 'true'
104105

105106
PublishToGitHubPages:
106-
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r5
107+
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r6
107108
needs:
108109
- Documentation
109110
- Simulate
@@ -113,7 +114,7 @@ jobs:
113114
# coverage: 'PoC-Coverage-HTML'
114115

115116
AutoTag:
116-
uses: pyTooling/Actions/.github/workflows/TagReleaseCommit.yml@r5
117+
uses: pyTooling/Actions/.github/workflows/TagReleaseCommit.yml@r6
117118
needs:
118119
- Prepare
119120
- PublishToGitHubPages
@@ -126,7 +127,7 @@ jobs:
126127
auto_tag: ${{ needs.Prepare.outputs.is_release_commit }}
127128

128129
Release:
129-
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r5
130+
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r6
130131
needs:
131132
- PublishToGitHubPages
132133
if: needs.Prepare.outputs.is_release_tag == 'true'

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def _LatestTagName():
225225
"sphinx_autodoc_typehints",
226226
"autoapi.sphinx",
227227
"sphinx_reports",
228-
"pyEDAA.OSVVM.Sphinx",
228+
# "pyEDAA.OSVVM.Sphinx",
229229
# "wavedrom",
230230
# User defined extensions
231231
# 'DocumentMember',

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ sphinx_design ~= 0.6.1
2020
sphinx-copybutton >= 0.5.2
2121
sphinx_autodoc_typehints ~= 3.1
2222
sphinx_reports ~= 0.9
23-
pyedaa.osvvm ~= 0.6
23+
#pyedaa.osvvm ~= 0.5
2424

2525
sphinxcontrib-wavedrom ~= 3.0

docs/unittests/index.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
Unittest Summary Report
22
#######################
33

4-
5-
6-
.. #report:unittest-summary::
4+
.. report:unittest-summary::
75
:reportid: src
86

97
OSVVM Libraries Build Report
@@ -12,6 +10,6 @@ OSVVM Libraries Build Report
1210
Test report generated with `OSVVM <https://github.com/OSVVM>`__ and
1311
`pyEDAA.OSVVM <https://github.com/pyg/sphinx-reports>`__.
1412

15-
.. osvvm:build-summary::
13+
.. #osvvm:build-summary::
1614
:reportid: PoC
1715
:build-name: The PoC-Library

0 commit comments

Comments
 (0)