Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 5 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,8 @@ trim_trailing_whitespace = false
[*.rst]
indent_style = space
indent_size = 3

[*.{yml,yaml}]
indent_style = space
indent_size = 2

42 changes: 27 additions & 15 deletions .github/workflows/Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,32 +15,33 @@ jobs:
Prepare:
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r7
with:
main_branch: 'master'
release_branch: 'master'
main_branch: 'main'
release_branch: 'main'

Simulate:
uses: ./.github/workflows/Simulate.yml
strategy:
fail-fast: false
matrix:
include:
- { simulator: 'nvc', backend: '', version: 'latest', can-fail: false }
# - { simulator: 'ghdl', backend: 'mcode', version: 'latest', can-fail: false }
- { simulator: 'ghdl', backend: 'llvm', version: 'latest', can-fail: false }
- {ubuntu-version: 'ubuntu-26.04', simulator: 'nvc', backend: '', version: 'latest', can-fail: false}
- {ubuntu-version: 'ubuntu-26.04', simulator: 'ghdl', backend: 'mcode', version: 'nightly', can-fail: false}
- {ubuntu-version: 'ubuntu-26.04', simulator: 'ghdl', backend: 'llvm', version: 'nightly', can-fail: false}
with:
simulator: ${{ matrix.simulator }}
ghdl-version: ${{ matrix.version }}
ghdl-backend: ${{ matrix.backend }}
nvc-version: ${{ matrix.version }}
can-fail: ${{ matrix.can-fail }}
ubuntu-version: ${{ matrix.ubuntu-version }}
simulator: ${{ matrix.simulator }}
ghdl-version: ${{ matrix.version }}
ghdl-backend: ${{ matrix.backend }}
nvc-version: ${{ matrix.version }}
can-fail: ${{ matrix.can-fail }}

PublishTestResults:
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r7
needs:
- Simulate
# if: success() || failure()
with:
unittest_artifacts_pattern: 'PoC-Report-XML-*'
unittest_artifacts_pattern: 'SimPoC-Report-XML-*'
testsuite-summary-name: 'The PoC Library'
merge-input-dialect: 'Any-JUnit'
merged_junit_filename: 'unittest.xml'
Expand All @@ -52,28 +53,38 @@ jobs:

IntermediateCleanUp:
name: 🗑️ Intermediate Artifact Cleanup
runs-on: 'ubuntu-24.04'
runs-on: 'ubuntu-26.04'
needs:
- Simulate
- PublishTestResults
# if: success() || failure()
steps:
- name: 🗑️ Delete YAML artifacts from matrix jobs
uses: geekyeggo/delete-artifact@v5
uses: geekyeggo/delete-artifact@v6
continue-on-error: true
with:
name: |
OSVVM-Report-YAML-*
PoC-Report-YAML-*

- name: 🗑️ Delete JUnit XML artifacts from matrix jobs
uses: geekyeggo/delete-artifact@v5
uses: geekyeggo/delete-artifact@v6
continue-on-error: true
with:
name: |
OSVVM-Report-XML-*
PoC-Report-XML-*

# IntermediateCleanUp:
# uses: pyTooling/Actions/.github/workflows/CleanupArtifacts.yml@r7
# needs:
# - PublishCoverageResults
# - PublishPytestResults
# with:
# others: |
# pyGHDL-Coverage-SQLite-*
# pyGHDL-Unittest-XML-*

Documentation:
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r7
needs:
Expand All @@ -87,7 +98,7 @@ jobs:
latex_artifact: 'PoC-LaTeX'

Test:
runs-on: 'ubuntu-24.04'
runs-on: 'ubuntu-26.04'
needs:
- Simulate
- PublishTestResults
Expand Down Expand Up @@ -137,6 +148,7 @@ jobs:
Release:
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r7
needs:
- Prepare
- PublishToGitHubPages
if: needs.Prepare.outputs.is_release_tag == 'true'
permissions:
Expand Down
Loading
Loading