Skip to content

v4.3.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 18 Apr 10:42
33edd82

Release created on: 18.04.2025 - 08:47:38

New Features

  • CompletePipeline.yml:
    • Added new codecov parameter to enable publishing coverage and unittest reports to Codecov.
    • Added new codacy parameter to enable publishing coverage reports to Codacy.
    • Added new dorny parameter to enable publishing unittest reports via Dorny Test-Reporter.
    • Added new cleanup parameter to skip cleanup jobs, thus temporary artifacts aren't removed and can be investigated after pipeline run.
  • ExtractConfiguration.yml:
    • Provide more output parameters for merged unittest reports in XML format:
      • unittest_merged_report_xml_directory
      • unittest_merged_report_xml_filename
      • unittest_merged_report_xml
  • PublishCoverageResults.yml
    • Added option codecov to activate publishing to Codecov.
    • Added option codacy to activate publishing to Codacy.
  • PublishTestResults.yml
    • Added option testsuite-summary-name to set the TestsuiteSummary name.
    • Added option codecov to activate publishing to Codecov.
    • Added option dorny to activate publishing via Dorny Test-Reporter.
      (This will replace publish in future versions.)

Changes

  • Bumped Python dependencies.
  • Updated dorny/test-reporter from v1 to v2
  • Changed default Python version in all jobs to 3.13.
  • CompletePipeline.yml
    • Set testsuite-summary-name for job PublishTestResults to package_name from input parameters.
  • PublishCoverageResults.yml:
    • Removed extraction of configuration variables and use variables provided by the ExtractConfiguration.yml job via input parameters.
      (Reduced code duplication.)
    • New parameters:
      • coverage_report_xml_directory and coverage_report_xml_filename
      • coverage_report_json_directory and coverage_report_json_filename
      • coverage_report_html_directory

Bug Fixes

  • CompletePipeline.yml
    • Forward secrets for Codacy and Codecov.
    • Job PublishCoverageResults:
      • Provide parameters coverage_report_json_directory, coverage_report_json_filename and coverage_report_html_directory to the job.
    • PublishTestResults:
      • Provide parameters merged_junit_filename to the job.
    • Documentation
      • Parameter unittest_xml_artifact: Use merged unittest results artifact from PublishTestResults.
        (Before this change, one specific unittest variant - Ubuntu Python 3.12 - was used.)
  • PublishCoverageResults.yml:
    • Run coverage report to XML conversion, also if no artifact is activated, but codacy or codecov is active.

Documentation

None

Unit Tests

  • Adjusted code due to parameter changes.