[Dependabot]: Bump pyTooling/download-artifact from 5 to 6 #555
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pipeline | |
| on: | |
| push: | |
| workflow_dispatch: | |
| schedule: | |
| # Every Friday at 22:00 - rerun pipeline to check for dependency-based issues | |
| - cron: '0 22 * * 5' | |
| jobs: | |
| Prepare: | |
| uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r6 | |
| ConfigParams: | |
| uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@dev | |
| UnitTestingParams: | |
| uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6 | |
| with: | |
| package_name: 'pyVersioning' | |
| disable_list: 'windows-arm:3.13 windows-arm:pypy-3.10 windows-arm:pypy-3.11' | |
| AppTestingParams: | |
| uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6 | |
| with: | |
| name: pyVersioning | |
| system_list: "ubuntu ubuntu-arm macos macos-arm windows windows-arm" | |
| UnitTesting: | |
| uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6 | |
| needs: | |
| - ConfigParams | |
| - UnitTestingParams | |
| with: | |
| jobs: ${{ needs.UnitTestingParams.outputs.python_jobs }} | |
| requirements: "-r tests/unit/requirements.txt" | |
| pacboy: "msys/git" | |
| unittest_report_xml: ${{ needs.ConfigParams.outputs.unittest_report_xml }} | |
| coverage_report_html: ${{ needs.ConfigParams.outputs.coverage_report_html }} | |
| unittest_xml_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }} | |
| coverage_sqlite_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_sqlite }} | |
| StaticTypeCheck: | |
| uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r6 | |
| needs: | |
| - ConfigParams | |
| - UnitTestingParams | |
| with: | |
| python_version: ${{ needs.UnitTestingParams.outputs.python_version }} | |
| html_report: ${{ needs.ConfigParams.outputs.typing_report_html }} | |
| html_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }} | |
| CodeQuality: | |
| uses: pyTooling/Actions/.github/workflows/CheckCodeQuality.yml@r6 | |
| needs: | |
| - UnitTestingParams | |
| with: | |
| python_version: ${{ needs.UnitTestingParams.outputs.python_version }} | |
| package_directory: ${{ needs.UnitTestingParams.outputs.package_directory }} | |
| pylint: 'false' | |
| artifact: CodeQuality | |
| DocCoverage: | |
| uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@r6 | |
| needs: | |
| - UnitTestingParams | |
| with: | |
| python_version: ${{ needs.UnitTestingParams.outputs.python_version }} | |
| directory: ${{ needs.UnitTestingParams.outputs.package_directory }} | |
| Package: | |
| uses: pyTooling/Actions/.github/workflows/Package.yml@r6 | |
| needs: | |
| - UnitTestingParams | |
| with: | |
| python_version: ${{ needs.UnitTestingParams.outputs.python_version }} | |
| artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }} | |
| AppTesting: | |
| uses: pyTooling/Actions/.github/workflows/ApplicationTesting.yml@dev | |
| needs: | |
| - UnitTestingParams | |
| - AppTestingParams | |
| - Package | |
| with: | |
| jobs: ${{ needs.AppTestingParams.outputs.python_jobs }} | |
| wheel: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }} | |
| apptest_xml_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).apptesting_xml }} | |
| Examples: | |
| runs-on: ubuntu-24.04 | |
| needs: | |
| - UnitTestingParams | |
| - Package | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| example: ["C", "CXX"] | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: ⏬ Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: 📥 Download artifacts '${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }}' from 'Package' job | |
| uses: pyTooling/download-artifact@v6 | |
| with: | |
| name: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }} | |
| path: install | |
| - name: 🔧 Install wheel from artifact (Ubuntu/macOS) | |
| run: | | |
| ls -l install | |
| python -m pip install -U --disable-pip-version-check --break-system-packages install/*.whl | |
| - name: Generate versioning.${{ matrix.fileext }} | |
| run: | | |
| cd example | |
| ./fillout.sh ${{ matrix.example }} | |
| - name: Compile example | |
| run: | | |
| cd example | |
| ./build.sh ${{ matrix.example }} | |
| - name: Execute example | |
| run: | | |
| cd example | |
| ./run.sh ${{ matrix.example }} | |
| - name: Check example | |
| run: | | |
| cd example | |
| ./check.sh ${{ matrix.example }} | |
| PublishCoverageResults: | |
| uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r6 | |
| needs: | |
| - ConfigParams | |
| - UnitTestingParams | |
| - UnitTesting | |
| if: success() || failure() | |
| with: | |
| coverage_report_json: ${{ needs.ConfigParams.outputs.coverage_report_json }} | |
| coverage_report_html: ${{ needs.ConfigParams.outputs.coverage_report_html }} | |
| coverage_json_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_json }} | |
| coverage_html_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_html }} | |
| codecov: true | |
| codacy: true | |
| secrets: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| CODACY_TOKEN: ${{ secrets.CODACY_TOKEN }} | |
| PublishTestResults: | |
| uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r6 | |
| needs: | |
| - ConfigParams | |
| - UnitTestingParams | |
| - UnitTesting | |
| - AppTesting | |
| if: success() || failure() | |
| with: | |
| additional_merge_args: '"--pytest=rewrite-dunder-init;reduce-depth:pytest.tests.unit;reduce-depth:pytest.tests.app" --render=tree' | |
| testsuite-summary-name: ${{ needs.UnitTestingParams.outputs.package_fullname }} | |
| merged_junit_filename: ${{ fromJson(needs.ConfigParams.outputs.unittest_merged_report_xml).filename }} | |
| merged_junit_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }} | |
| dorny: true | |
| codecov: true | |
| secrets: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| # VerifyDocs: | |
| # uses: pyTooling/Actions/.github/workflows/VerifyDocs.yml@r6 | |
| # needs: | |
| # - UnitTestingParams | |
| # with: | |
| # python_version: ${{ needs.UnitTestingParams.outputs.python_version }} | |
| Documentation: | |
| uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r6 | |
| needs: | |
| - ConfigParams | |
| - UnitTestingParams | |
| - PublishTestResults | |
| - PublishCoverageResults | |
| # - VerifyDocs | |
| with: | |
| python_version: ${{ needs.UnitTestingParams.outputs.python_version }} | |
| coverage_report_json: ${{ needs.ConfigParams.outputs.coverage_report_json }} | |
| unittest_xml_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }} | |
| coverage_json_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_json }} | |
| html_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_html }} | |
| latex_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_latex }} | |
| IntermediateCleanUp: | |
| uses: pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@r6 | |
| needs: | |
| - UnitTestingParams | |
| - PublishCoverageResults | |
| - PublishTestResults | |
| with: | |
| sqlite_coverage_artifacts_prefix: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_sqlite }}- | |
| xml_unittest_artifacts_prefix: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }}- | |
| PDFDocumentation: | |
| uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@dev | |
| needs: | |
| - UnitTestingParams | |
| - Documentation | |
| with: | |
| document: ${{ needs.UnitTestingParams.outputs.package_fullname }} | |
| latex_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_latex }} | |
| pdf_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_pdf }} | |
| can-fail: 'true' | |
| PublishToGitHubPages: | |
| uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r6 | |
| needs: | |
| - UnitTestingParams | |
| - Documentation | |
| # - PDFDocumentation | |
| - PublishCoverageResults | |
| - StaticTypeCheck | |
| with: | |
| doc: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_html }} | |
| coverage: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_html }} | |
| typing: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }} | |
| TriggerTaggedRelease: | |
| uses: pyTooling/Actions/.github/workflows/TagReleaseCommit.yml@r6 | |
| needs: | |
| - Prepare | |
| - UnitTesting | |
| - AppTesting | |
| - Examples | |
| # - StaticTypeCheck | |
| - Package | |
| - PublishToGitHubPages | |
| if: needs.Prepare.outputs.is_release_commit == 'true' && github.event_name != 'schedule' | |
| permissions: | |
| contents: write # required for create tag | |
| actions: write # required for trigger workflow | |
| with: | |
| version: ${{ needs.Prepare.outputs.version }} | |
| auto_tag: ${{ needs.Prepare.outputs.is_release_commit }} | |
| secrets: inherit | |
| ReleasePage: | |
| uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r6 | |
| needs: | |
| - Prepare | |
| - AppTesting | |
| - Examples | |
| # - StaticTypeCheck | |
| - Package | |
| - PublishToGitHubPages | |
| if: needs.Prepare.outputs.is_release_tag == 'true' | |
| permissions: | |
| contents: write | |
| actions: write | |
| with: | |
| tag: ${{ needs.Prepare.outputs.version }} | |
| secrets: inherit | |
| PublishOnPyPI: | |
| uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@r6 | |
| needs: | |
| - Prepare | |
| - UnitTestingParams | |
| - Package | |
| - ReleasePage | |
| if: needs.Prepare.outputs.is_release_tag == 'true' | |
| with: | |
| python_version: ${{ needs.UnitTestingParams.outputs.python_version }} | |
| requirements: '-r dist/requirements.txt' | |
| artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }} | |
| secrets: | |
| PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | |
| ArtifactCleanUp: | |
| uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r6 | |
| needs: | |
| - UnitTestingParams | |
| - UnitTesting | |
| - StaticTypeCheck | |
| - Documentation | |
| # - PDFDocumentation | |
| - PublishTestResults | |
| - PublishCoverageResults | |
| - PublishToGitHubPages | |
| with: | |
| package: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }} | |
| remaining: | | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }} | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_html }}-* | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_sqlite }} | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_xml }}-* | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_json }}-* | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_html }}-* | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }} | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_html }} | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_sqlite }} | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_xml }} | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_json }} | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_html }} | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }} | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_html }} | |
| ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_latex }} | |
| # ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_pdf }} |