Skip to content
Open
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
  •  
  •  
  •  
22 changes: 14 additions & 8 deletions .github/workflows/Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@ on:
pull_request:
workflow_dispatch:

permissions:
actions: write
contents: write
pages: write
id-token: write

jobs:
Prepare:
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r6
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r7
with:
main_branch: 'master'
release_branch: 'master'
Expand All @@ -29,7 +35,7 @@ jobs:
can-fail: ${{ matrix.can-fail }}

PublishTestResults:
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r6
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r7
needs:
- Simulate
# if: success() || failure()
Expand Down Expand Up @@ -69,7 +75,7 @@ jobs:
PoC-Report-XML-*

Documentation:
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r6
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r7
needs:
- PublishTestResults
# if: success() || failure()
Expand All @@ -94,18 +100,18 @@ jobs:
printf "Documentation: '%s'\n" "${{ needs.Documentation.result }}"

PDFDocumentation:
uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@dev
uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@r7
needs:
- Documentation
if: (success() || failure()) && needs.Documentation.result == 'success'
with:
document: 'The PoC-Library'
document: 'PoC'
latex_artifact: 'PoC-LaTeX'
pdf_artifact: 'PoC-PDF'
can-fail: 'true'

PublishToGitHubPages:
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r6
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r7
needs:
- Documentation
- Simulate
Expand All @@ -115,7 +121,7 @@ jobs:
# coverage: 'PoC-Coverage-HTML'

AutoTag:
uses: pyTooling/Actions/.github/workflows/TagReleaseCommit.yml@r6
uses: pyTooling/Actions/.github/workflows/TagReleaseCommit.yml@r7
needs:
- Prepare
- PublishToGitHubPages
Expand All @@ -128,7 +134,7 @@ jobs:
auto_tag: ${{ needs.Prepare.outputs.is_release_commit }}

Release:
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r6
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r7
needs:
- PublishToGitHubPages
if: needs.Prepare.outputs.is_release_tag == 'true'
Expand Down
23 changes: 15 additions & 8 deletions .github/workflows/Simulate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
default: false
type: boolean
simulator:
description: 'simualtor name'
description: 'simulator name'
required: true
type: string
ghdl-backend:
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:

tee run.tcl <<EOF
source ../../lib/OSVVM-Scripts/${{ needs.Parameters.outputs.startScript }}
build ../../lib/OsvvmLibraries.pro OsvvmLibraries
build ../../lib/OsvvmLibraries.pro [BuildName "OsvvmLibraries"]
EOF

- name: Precompile OSVVM (GHDL)
Expand Down Expand Up @@ -277,7 +277,7 @@ jobs:
SetExtendedAnalyzeOptions {--relaxed}
}

build ../../src/PoC.pro PoC
build ../../src/PoC.pro [BuildName "PoC"]
EOF

- name: Precompile PoC (GHDL)
Expand Down Expand Up @@ -314,7 +314,7 @@ jobs:
SetExtendedAnalyzeOptions {--relaxed}
}

build ../../tb/RunAllTests.pro
build ../../tb/RunAllTests.pro [BuildName "RunAllTests"]
EOF

- name: Simulate PoC (GHDL)
Expand All @@ -336,8 +336,15 @@ jobs:
name: ${{ needs.Parameters.outputs.pocReportHTML }}
working-directory: '${{ needs.Parameters.outputs.tempDirectory }}'
path: |
logs
reports
OsvvmLibraries/logs
OsvvmLibraries/reports
OsvvmLibraries/*.html
PoC/logs
PoC/reports
PoC/*.html
RunAllTests/logs
RunAllTests/reports
RunAllTests/*.html
*.html
retention-days: 1

Expand All @@ -346,7 +353,7 @@ jobs:
continue-on-error: true
with:
name: ${{ needs.Parameters.outputs.pocReportYAML }}
working-directory: '${{ needs.Parameters.outputs.tempDirectory }}'
working-directory: '${{ needs.Parameters.outputs.tempDirectory }}/RunAllTests'
path: |
*.yml
retention-days: 1
Expand All @@ -356,7 +363,7 @@ jobs:
continue-on-error: true
with:
name: ${{ needs.Parameters.outputs.pocReportXML }}
working-directory: '${{ needs.Parameters.outputs.tempDirectory }}'
working-directory: '${{ needs.Parameters.outputs.tempDirectory }}/RunAllTests'
path: |
*.xml
retention-days: 1
Expand Down
21 changes: 3 additions & 18 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,24 +42,9 @@ tb/common/my_project.vhdl
/.sigasi/**/
!/.sigasi/project.sigasi

/prj/ActiveHDL/*
/prj/ActiveHDL/*.*
/prj/ActiveHDL/**/*.*
!/prj/ActiveHDL/PoC.adf
!/prj/ActiveHDL/PoC.wsp

/prj/Diamond/*.*
/prj/Diamond/*/*
/prj/Diamond/**/*.*
!/prj/Diamond/**/*.lpf
!/prj/Diamond/*.ldf
!/prj/Diamond/*.sty
!/prj/Diamond/*.vhdl

/prj/QuestaSim/*
/prj/QuestaSim/*.*
/prj/QuestaSim/**/*.*
!/prj/QuestaSim/PoC.mpf
prj/*/**/*.*
!prj/*/**/*.vhdl
!prj/vivado/*/*.xpr

# general whitelist
!.git*
Expand Down
Loading
Loading