mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 02:56:56 +08:00
Reduced code duplications when checking job-matrix and artifact names by using local Actions.
This commit is contained in:
67
.github/actions/CheckArtifactNames/action.yml
vendored
Normal file
67
.github/actions/CheckArtifactNames/action.yml
vendored
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
name: Check artifact names
|
||||||
|
branding:
|
||||||
|
icon: check-square
|
||||||
|
color: green
|
||||||
|
description: Check generated artifact names.
|
||||||
|
author: Patrick Lehmann (@Paebbels)
|
||||||
|
|
||||||
|
inputs:
|
||||||
|
prefix:
|
||||||
|
description:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
generated-names:
|
||||||
|
description:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: composite
|
||||||
|
steps:
|
||||||
|
- name: Install dependencies
|
||||||
|
shell: bash
|
||||||
|
run: pip install --disable-pip-version-check --break-system-packages pyTooling
|
||||||
|
|
||||||
|
- name: Check artifact names
|
||||||
|
id: check
|
||||||
|
shell: python
|
||||||
|
working-directory: ${{ inputs.path }}
|
||||||
|
run: |
|
||||||
|
from pyTooling.Common import zipdicts
|
||||||
|
|
||||||
|
expectedName = "Example"
|
||||||
|
expectedArtifacts = {
|
||||||
|
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
|
||||||
|
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
|
||||||
|
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
|
||||||
|
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
|
||||||
|
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
|
||||||
|
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
|
||||||
|
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
|
||||||
|
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
|
||||||
|
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
|
||||||
|
"statictyping_cobertura": f"{expectedName}-StaticTyping-Cobertura-XML",
|
||||||
|
"statictyping_junit": f"{expectedName}-StaticTyping-JUnit-XML",
|
||||||
|
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
|
||||||
|
"package_all": f"{expectedName}-Packages",
|
||||||
|
"documentation_html": f"{expectedName}-Documentation-HTML",
|
||||||
|
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
|
||||||
|
"documentation_pdf": f"{expectedName}-Documentation-PDF",
|
||||||
|
}
|
||||||
|
|
||||||
|
actualArtifactNames = json_loads("""${{ inputs }}""".replace("'", '"'))
|
||||||
|
errors = 0
|
||||||
|
|
||||||
|
if len(actualArtifactNames) != len(expectedArtifacts):
|
||||||
|
print(f"Number of 'artifact_names' does not match: {len(actualArtifactNames)} != {len(expectedArtifacts)}.")
|
||||||
|
errors += 1
|
||||||
|
else:
|
||||||
|
for key, actual, expected in zipdicts(actualArtifactNames, expectedArtifacts):
|
||||||
|
if actual != expected:
|
||||||
|
print(f"Artifact name '{key}' does not match: {actual} != {expected}.")
|
||||||
|
errors += 1
|
||||||
|
|
||||||
|
if errors == 0:
|
||||||
|
print(f"All checks PASSED.")
|
||||||
|
|
||||||
|
exit(errors)
|
||||||
82
.github/actions/CheckJobMatrix/action.yml
vendored
Normal file
82
.github/actions/CheckJobMatrix/action.yml
vendored
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
name: Check job matrix
|
||||||
|
branding:
|
||||||
|
icon: check-square
|
||||||
|
color: green
|
||||||
|
description: Check generated job matrix.
|
||||||
|
author: Patrick Lehmann (@Paebbels)
|
||||||
|
|
||||||
|
inputs:
|
||||||
|
expected-default-version:
|
||||||
|
description:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
expected-python-versions:
|
||||||
|
description:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
expected-systems:
|
||||||
|
description:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
expected-exclude-jobs:
|
||||||
|
description:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
expected-include-jobs:
|
||||||
|
description:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
generated-default-version:
|
||||||
|
description:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
generated-jobmatrix:
|
||||||
|
description:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: composite
|
||||||
|
steps:
|
||||||
|
- name: Check parameters
|
||||||
|
id: check
|
||||||
|
shell: python
|
||||||
|
run: |
|
||||||
|
from json import loads as json_loads
|
||||||
|
from sys import exit
|
||||||
|
|
||||||
|
expectedPythonVersion = """${{ inputs.expected-default-version }}"""
|
||||||
|
expectedPythons = json_loads("""${{ inputs.expected-python-versions }}""".replace("'", '"'))
|
||||||
|
expectedSystems = json_loads("""${{ inputs.expected-systems }}""".replace("'", '"'))
|
||||||
|
excludedJobs = json_loads("""${{ inputs.expected-exclude-jobs }}""".replace("'", '"'))
|
||||||
|
includeJobs = json_loads("""${{ inputs.expected-include-jobs }}""".replace("'", '"'))
|
||||||
|
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons if f"{system}:{python}" not in excludedJobs] + includeJobs
|
||||||
|
|
||||||
|
actualPythonVersion = """${{ inputs.generated-default-version }}"""
|
||||||
|
actualPythonJobs = json_loads("""${{ inputs.generated-jobmatrix }}""".replace("'", '"'))
|
||||||
|
errors = 0
|
||||||
|
|
||||||
|
if actualPythonVersion != expectedPythonVersion:
|
||||||
|
print(f"'python_version' does not match: '{actualPythonVersion}' != '{expectedPythonVersion}'.")
|
||||||
|
errors += 1
|
||||||
|
|
||||||
|
if len(actualPythonJobs) != len(expectedJobs):
|
||||||
|
print(f"Number of 'python_jobs' does not match: {len(actualPythonJobs)} != {len(expectedJobs)}.")
|
||||||
|
print("Actual jobs:")
|
||||||
|
for job in actualPythonJobs:
|
||||||
|
if job['system'] == "msys2":
|
||||||
|
print(f" {job['runtime'].lower()}:{job['python']}")
|
||||||
|
else:
|
||||||
|
print(f" {job['system']}:{job['python']}")
|
||||||
|
|
||||||
|
print("Expected jobs:")
|
||||||
|
for job in expectedJobs:
|
||||||
|
print(f" {job}")
|
||||||
|
errors += 1
|
||||||
|
else:
|
||||||
|
print("❌ Checking job matrix is not implemented")
|
||||||
|
|
||||||
|
if errors == 0:
|
||||||
|
print(f"All checks PASSED.")
|
||||||
|
|
||||||
|
exit(errors)
|
||||||
@@ -9,7 +9,7 @@ jobs:
|
|||||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
|
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
|
||||||
with:
|
with:
|
||||||
name: Example
|
name: Example
|
||||||
python_version_list: "3.12 3.13"
|
python_version_list: "3.13 3.14" # py-1, py-0
|
||||||
system_list: "ubuntu windows"
|
system_list: "ubuntu windows"
|
||||||
|
|
||||||
Testing:
|
Testing:
|
||||||
|
|||||||
574
.github/workflows/_Checking_Parameters.yml
vendored
574
.github/workflows/_Checking_Parameters.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
|
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
|
||||||
with:
|
with:
|
||||||
name: Example
|
name: Example
|
||||||
python_version_list: "3.12 3.13 pypy-3.10 pypy-3.11"
|
python_version_list: "3.12 3.13 pypy-3.10 pypy-3.11" # py-2, py-1, pypy-1, pypy-0
|
||||||
|
|
||||||
Params_Systems:
|
Params_Systems:
|
||||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
|
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
|
||||||
@@ -26,7 +26,7 @@ jobs:
|
|||||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
|
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
|
||||||
with:
|
with:
|
||||||
name: Example
|
name: Example
|
||||||
python_version_list: "3.12"
|
python_version_list: "3.12" # py-2
|
||||||
system_list: "ubuntu windows macos macos-arm"
|
system_list: "ubuntu windows macos macos-arm"
|
||||||
include_list: "ubuntu:3.13 ubuntu:3.14 ubuntu-arm:3.12"
|
include_list: "ubuntu:3.13 ubuntu:3.14 ubuntu-arm:3.12"
|
||||||
|
|
||||||
@@ -34,7 +34,7 @@ jobs:
|
|||||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
|
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
|
||||||
with:
|
with:
|
||||||
name: Example
|
name: Example
|
||||||
python_version_list: "3.13"
|
python_version_list: "3.13" # py-1
|
||||||
system_list: "ubuntu windows macos macos-arm"
|
system_list: "ubuntu windows macos macos-arm"
|
||||||
exclude_list: "windows:3.13 windows:3.14"
|
exclude_list: "windows:3.13 windows:3.14"
|
||||||
|
|
||||||
@@ -42,7 +42,7 @@ jobs:
|
|||||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
|
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
|
||||||
with:
|
with:
|
||||||
name: Example
|
name: Example
|
||||||
python_version_list: "3.13"
|
python_version_list: "3.13" # py-1
|
||||||
system_list: "ubuntu windows macos macos-arm"
|
system_list: "ubuntu windows macos macos-arm"
|
||||||
disable_list: "windows:3.13 windows:3.14"
|
disable_list: "windows:3.13 windows:3.14"
|
||||||
|
|
||||||
@@ -50,7 +50,7 @@ jobs:
|
|||||||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
|
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
|
||||||
with:
|
with:
|
||||||
name: Example
|
name: Example
|
||||||
python_version_list: "3.12 3.13"
|
python_version_list: "3.12 3.13" # py-2, py-1
|
||||||
system_list: "ubuntu windows macos macos-arm"
|
system_list: "ubuntu windows macos macos-arm"
|
||||||
include_list: "windows:3.10 windows:3.11 windows:3.13"
|
include_list: "windows:3.10 windows:3.11 windows:3.13"
|
||||||
exclude_list: "macos:3.12 macos:3.13"
|
exclude_list: "macos:3.12 macos:3.13"
|
||||||
@@ -63,75 +63,25 @@ jobs:
|
|||||||
run:
|
run:
|
||||||
shell: python
|
shell: python
|
||||||
steps:
|
steps:
|
||||||
- name: Install dependencies
|
- name: Checkout repository to access local Action
|
||||||
shell: bash
|
uses: actions/checkout@v5
|
||||||
run: pip install --disable-pip-version-check --break-system-packages pyTooling
|
|
||||||
|
|
||||||
- name: Checking results from 'Params_Default'
|
- name: Checking job matrix from 'Params_Default'
|
||||||
run: |
|
uses: ./.github/actions/CheckJobMatrix
|
||||||
from json import loads as json_loads
|
with:
|
||||||
from sys import exit
|
expected-default-version: '3.14'
|
||||||
|
expected-python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
|
||||||
|
expected-systems: '["ubuntu", "ubuntu-arm", "windows", "windows-arm", "macos", "macos-arm"]'
|
||||||
|
expected-exclude-jobs: '["windows-arm:3.10"]'
|
||||||
|
expected-include-jobs: '["mingw64:3.12", "ucrt64:3.12"]'
|
||||||
|
generated-default-version: ${{ needs.Params_Default.outputs.python_version }}
|
||||||
|
generated-jobmatrix: ${{ needs.Params_Default.outputs.python_jobs }}
|
||||||
|
|
||||||
from pyTooling.Common import zipdicts
|
- name: Checking artifact names from 'Params_Default'
|
||||||
|
uses: ./.github/actions/CheckArtifactNames
|
||||||
expectedPythonVersion = "3.13"
|
with:
|
||||||
expectedPythons = ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
prefix: 'Example'
|
||||||
expectedSystems = ["ubuntu", "ubuntu-arm", "windows", "windows-arm", "macos", "macos-arm"]
|
generated-names: ${{ needs.Params_Default.outputs.artifact_names }}
|
||||||
excludedJobs = ["windows-arm:3.9", "windows-arm:3.10"]
|
|
||||||
includeJobs = ["mingw64:3.12", "ucrt64:3.12"]
|
|
||||||
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons if f"{system}:{python}" not in excludedJobs] + includeJobs
|
|
||||||
expectedName = "Example"
|
|
||||||
expectedArtifacts = {
|
|
||||||
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
|
|
||||||
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
|
|
||||||
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
|
|
||||||
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
|
|
||||||
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
|
|
||||||
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
|
|
||||||
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
|
|
||||||
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
|
|
||||||
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
|
|
||||||
"statictyping_cobertura": f"{expectedName}-StaticTyping-Cobertura-XML",
|
|
||||||
"statictyping_junit": f"{expectedName}-StaticTyping-JUnit-XML",
|
|
||||||
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
|
|
||||||
"package_all": f"{expectedName}-Packages",
|
|
||||||
"documentation_html": f"{expectedName}-Documentation-HTML",
|
|
||||||
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
|
|
||||||
"documentation_pdf": f"{expectedName}-Documentation-PDF",
|
|
||||||
}
|
|
||||||
|
|
||||||
actualPythonVersion = """${{ needs.Params_Default.outputs.python_version }}"""
|
|
||||||
actualPythonJobs = json_loads("""${{ needs.Params_Default.outputs.python_jobs }}""".replace("'", '"'))
|
|
||||||
actualArtifactNames = json_loads("""${{ needs.Params_Default.outputs.artifact_names }}""".replace("'", '"'))
|
|
||||||
errors = 0
|
|
||||||
|
|
||||||
if actualPythonVersion != expectedPythonVersion:
|
|
||||||
print(f"'python_version' does not match: '{actualPythonVersion}' != '{expectedPythonVersion}'.")
|
|
||||||
errors += 1
|
|
||||||
if len(actualPythonJobs) != len(expectedJobs):
|
|
||||||
print(f"Number of 'python_jobs' does not match: {len(actualPythonJobs)} != {len(expectedJobs)}.")
|
|
||||||
print("Actual jobs:")
|
|
||||||
for job in actualPythonJobs:
|
|
||||||
if job['system'] == "msys2":
|
|
||||||
print(f" {job['runtime'].lower()}:{job['python']}")
|
|
||||||
else:
|
|
||||||
print(f" {job['system']}:{job['python']}")
|
|
||||||
print("Expected jobs:")
|
|
||||||
for job in expectedJobs:
|
|
||||||
print(f" {job}")
|
|
||||||
errors += 1
|
|
||||||
if len(actualArtifactNames) != len(expectedArtifacts):
|
|
||||||
print(f"Number of 'artifact_names' does not match: {len(actualArtifactNames)} != {len(expectedArtifacts)}.")
|
|
||||||
errors += 1
|
|
||||||
else:
|
|
||||||
for key, actual, expected in zipdicts(actualArtifactNames, expectedArtifacts):
|
|
||||||
if actual != expected:
|
|
||||||
print(f"Artifact name '{key}' does not match: {actual} != {expected}.")
|
|
||||||
errors += 1
|
|
||||||
|
|
||||||
if errors == 0:
|
|
||||||
print(f"All checks PASSED.")
|
|
||||||
exit(errors)
|
|
||||||
|
|
||||||
Params_Check_PythonVersions:
|
Params_Check_PythonVersions:
|
||||||
needs:
|
needs:
|
||||||
@@ -141,75 +91,19 @@ jobs:
|
|||||||
run:
|
run:
|
||||||
shell: python
|
shell: python
|
||||||
steps:
|
steps:
|
||||||
- name: Install dependencies
|
- name: Checkout repository to access local Action
|
||||||
shell: bash
|
uses: actions/checkout@v5
|
||||||
run: pip install --disable-pip-version-check --break-system-packages pyTooling
|
|
||||||
|
|
||||||
- name: Checking results from 'Params_PythonVersions'
|
- name: Checking job matrix from 'Params_PythonVersions'
|
||||||
run: |
|
uses: ./.github/actions/CheckJobMatrix
|
||||||
from json import loads as json_loads
|
with:
|
||||||
from sys import exit
|
expected-default-version: '3.13'
|
||||||
|
expected-python-versions: '["3.12", "3.13", "pypy-3.10", "pypy-3.11"]'
|
||||||
from pyTooling.Common import zipdicts
|
expected-systems: '["ubuntu", "ubuntu-arm", "windows", "windows-arm", "macos", "macos-arm"]'
|
||||||
|
expected-exclude-jobs: '["windows-arm:pypy-3.10", "windows-arm:pypy-3.11"]'
|
||||||
expectedPythonVersion = "3.13"
|
expected-include-jobs: '["mingw64:3.12", "ucrt64:3.12"]'
|
||||||
expectedPythons = ["3.12", "3.13", "pypy-3.10", "pypy-3.11"]
|
generated-default-version: ${{ needs.Params_PythonVersions.outputs.python_version }}
|
||||||
expectedSystems = ["ubuntu", "ubuntu-arm", "windows", "windows-arm", "macos", "macos-arm"]
|
generated-jobmatrix: ${{ needs.Params_PythonVersions.outputs.python_jobs }}
|
||||||
excludedJobs = ["windows-arm:pypy-3.10", "windows-arm:pypy-3.11"]
|
|
||||||
includeJobs = ["mingw64:3.12", "ucrt64:3.12"]
|
|
||||||
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons if f"{system}:{python}" not in excludedJobs] + includeJobs
|
|
||||||
expectedName = "Example"
|
|
||||||
expectedArtifacts = {
|
|
||||||
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
|
|
||||||
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
|
|
||||||
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
|
|
||||||
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
|
|
||||||
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
|
|
||||||
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
|
|
||||||
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
|
|
||||||
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
|
|
||||||
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
|
|
||||||
"statictyping_cobertura": f"{expectedName}-StaticTyping-Cobertura-XML",
|
|
||||||
"statictyping_junit": f"{expectedName}-StaticTyping-JUnit-XML",
|
|
||||||
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
|
|
||||||
"package_all": f"{expectedName}-Packages",
|
|
||||||
"documentation_html": f"{expectedName}-Documentation-HTML",
|
|
||||||
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
|
|
||||||
"documentation_pdf": f"{expectedName}-Documentation-PDF",
|
|
||||||
}
|
|
||||||
|
|
||||||
actualPythonVersion = """${{ needs.Params_PythonVersions.outputs.python_version }}"""
|
|
||||||
actualPythonJobs = json_loads("""${{ needs.Params_PythonVersions.outputs.python_jobs }}""".replace("'", '"'))
|
|
||||||
actualArtifactNames = json_loads("""${{ needs.Params_PythonVersions.outputs.artifact_names }}""".replace("'", '"'))
|
|
||||||
errors = 0
|
|
||||||
|
|
||||||
if actualPythonVersion != expectedPythonVersion:
|
|
||||||
print(f"'python_version' does not match: '{actualPythonVersion}' != '{expectedPythonVersion}'.")
|
|
||||||
errors += 1
|
|
||||||
if len(actualPythonJobs) != len(expectedJobs):
|
|
||||||
print(f"Number of 'python_jobs' does not match: {len(actualPythonJobs)} != {len(expectedJobs)}.")
|
|
||||||
print("Actual jobs:")
|
|
||||||
for job in actualPythonJobs:
|
|
||||||
if job['system'] == "msys2":
|
|
||||||
print(f" {job['runtime'].lower()}:{job['python']}")
|
|
||||||
else:
|
|
||||||
print(f" {job['system']}:{job['python']}")
|
|
||||||
print("Expected jobs:")
|
|
||||||
for job in expectedJobs:
|
|
||||||
print(f" {job}")
|
|
||||||
errors += 1
|
|
||||||
if len(actualArtifactNames) != len(expectedArtifacts):
|
|
||||||
print(f"Number of 'artifact_names' does not match: {len(actualArtifactNames)} != {len(expectedArtifacts)}.")
|
|
||||||
errors += 1
|
|
||||||
else:
|
|
||||||
for key, actual, expected in zipdicts(actualArtifactNames, expectedArtifacts):
|
|
||||||
if actual != expected:
|
|
||||||
print(f"Artifact name '{key}' does not match: {actual} != {expected}.")
|
|
||||||
errors += 1
|
|
||||||
|
|
||||||
if errors == 0:
|
|
||||||
print(f"All checks PASSED.")
|
|
||||||
exit(errors)
|
|
||||||
|
|
||||||
Params_Check_Systems:
|
Params_Check_Systems:
|
||||||
needs:
|
needs:
|
||||||
@@ -219,75 +113,19 @@ jobs:
|
|||||||
run:
|
run:
|
||||||
shell: python
|
shell: python
|
||||||
steps:
|
steps:
|
||||||
- name: Install dependencies
|
- name: Checkout repository to access local Action
|
||||||
shell: bash
|
uses: actions/checkout@v5
|
||||||
run: pip install --disable-pip-version-check --break-system-packages pyTooling
|
|
||||||
|
|
||||||
- name: Checking results from 'Params_Systems'
|
- name: Checking job matrix from 'Params_Systems'
|
||||||
run: |
|
uses: ./.github/actions/CheckJobMatrix
|
||||||
from json import loads as json_loads
|
with:
|
||||||
from sys import exit
|
expected-default-version: '3.13'
|
||||||
|
expected-python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
|
||||||
from pyTooling.Common import zipdicts
|
expected-systems: '["windows"]'
|
||||||
|
expected-exclude-jobs: '[]'
|
||||||
expectedPythonVersion = "3.13"
|
expected-include-jobs: '["mingw64:3.12", "ucrt64:3.12"]'
|
||||||
expectedPythons = ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
generated-default-version: ${{ needs.Params_Systems.outputs.python_version }}
|
||||||
expectedSystems = ["windows"]
|
generated-jobmatrix: ${{ needs.Params_Systems.outputs.python_jobs }}
|
||||||
excludedJobs = []
|
|
||||||
includeJobs = ["mingw64:3.12", "ucrt64:3.12"]
|
|
||||||
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons if f"{system}:{python}" not in excludedJobs] + includeJobs
|
|
||||||
expectedName = "Example"
|
|
||||||
expectedArtifacts = {
|
|
||||||
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
|
|
||||||
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
|
|
||||||
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
|
|
||||||
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
|
|
||||||
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
|
|
||||||
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
|
|
||||||
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
|
|
||||||
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
|
|
||||||
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
|
|
||||||
"statictyping_cobertura": f"{expectedName}-StaticTyping-Cobertura-XML",
|
|
||||||
"statictyping_junit": f"{expectedName}-StaticTyping-JUnit-XML",
|
|
||||||
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
|
|
||||||
"package_all": f"{expectedName}-Packages",
|
|
||||||
"documentation_html": f"{expectedName}-Documentation-HTML",
|
|
||||||
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
|
|
||||||
"documentation_pdf": f"{expectedName}-Documentation-PDF",
|
|
||||||
}
|
|
||||||
|
|
||||||
actualPythonVersion = """${{ needs.Params_Systems.outputs.python_version }}"""
|
|
||||||
actualPythonJobs = json_loads("""${{ needs.Params_Systems.outputs.python_jobs }}""".replace("'", '"'))
|
|
||||||
actualArtifactNames = json_loads("""${{ needs.Params_Systems.outputs.artifact_names }}""".replace("'", '"'))
|
|
||||||
errors = 0
|
|
||||||
|
|
||||||
if actualPythonVersion != expectedPythonVersion:
|
|
||||||
print(f"'python_version' does not match: '{actualPythonVersion}' != '{expectedPythonVersion}'.")
|
|
||||||
errors += 1
|
|
||||||
if len(actualPythonJobs) != len(expectedJobs):
|
|
||||||
print(f"Number of 'python_jobs' does not match: {len(actualPythonJobs)} != {len(expectedJobs)}.")
|
|
||||||
print("Actual jobs:")
|
|
||||||
for job in actualPythonJobs:
|
|
||||||
if job['system'] == "msys2":
|
|
||||||
print(f" {job['runtime'].lower()}:{job['python']}")
|
|
||||||
else:
|
|
||||||
print(f" {job['system']}:{job['python']}")
|
|
||||||
print("Expected jobs:")
|
|
||||||
for job in expectedJobs:
|
|
||||||
print(f" {job}")
|
|
||||||
errors += 1
|
|
||||||
if len(actualArtifactNames) != len(expectedArtifacts):
|
|
||||||
print(f"Number of 'artifact_names' does not match: {len(actualArtifactNames)} != {len(expectedArtifacts)}.")
|
|
||||||
errors += 1
|
|
||||||
else:
|
|
||||||
for key, actual, expected in zipdicts(actualArtifactNames, expectedArtifacts):
|
|
||||||
if actual != expected:
|
|
||||||
print(f"Artifact name '{key}' does not match: {actual} != {expected}.")
|
|
||||||
errors += 1
|
|
||||||
|
|
||||||
if errors == 0:
|
|
||||||
print(f"All checks PASSED.")
|
|
||||||
exit(errors)
|
|
||||||
|
|
||||||
Params_Check_Include:
|
Params_Check_Include:
|
||||||
needs:
|
needs:
|
||||||
@@ -297,75 +135,19 @@ jobs:
|
|||||||
run:
|
run:
|
||||||
shell: python
|
shell: python
|
||||||
steps:
|
steps:
|
||||||
- name: Install dependencies
|
- name: Checkout repository to access local Action
|
||||||
shell: bash
|
uses: actions/checkout@v5
|
||||||
run: pip install --disable-pip-version-check --break-system-packages pyTooling
|
|
||||||
|
|
||||||
- name: Checking results from 'Params_Include'
|
- name: Checking job matrix from 'Params_Include'
|
||||||
run: |
|
uses: ./.github/actions/CheckJobMatrix
|
||||||
from json import loads as json_loads
|
with:
|
||||||
from sys import exit
|
expected-default-version: '3.13'
|
||||||
|
expected-python-versions: '["3.12"]'
|
||||||
from pyTooling.Common import zipdicts
|
expected-systems: '["ubuntu", "windows", "macos", "macos-arm"]'
|
||||||
|
expected-exclude-jobs: '[]'
|
||||||
expectedPythonVersion = "3.13"
|
expected-include-jobs: '["ubuntu:3.13", "ubuntu:3.14", "ubuntu-arm:3.12"]'
|
||||||
expectedPythons = ["3.12"]
|
generated-default-version: ${{ needs.Params_Include.outputs.python_version }}
|
||||||
expectedSystems = ["ubuntu", "windows", "macos", "macos-arm"]
|
generated-jobmatrix: ${{ needs.Params_Include.outputs.python_jobs }}
|
||||||
excludedJobs = []
|
|
||||||
includeJobs = ["ubuntu:3.13", "ubuntu:3.14", "ubuntu-arm:3.12"]
|
|
||||||
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons if f"{system}:{python}" not in excludedJobs] + includeJobs
|
|
||||||
expectedName = "Example"
|
|
||||||
expectedArtifacts = {
|
|
||||||
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
|
|
||||||
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
|
|
||||||
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
|
|
||||||
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
|
|
||||||
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
|
|
||||||
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
|
|
||||||
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
|
|
||||||
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
|
|
||||||
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
|
|
||||||
"statictyping_cobertura": f"{expectedName}-StaticTyping-Cobertura-XML",
|
|
||||||
"statictyping_junit": f"{expectedName}-StaticTyping-JUnit-XML",
|
|
||||||
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
|
|
||||||
"package_all": f"{expectedName}-Packages",
|
|
||||||
"documentation_html": f"{expectedName}-Documentation-HTML",
|
|
||||||
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
|
|
||||||
"documentation_pdf": f"{expectedName}-Documentation-PDF",
|
|
||||||
}
|
|
||||||
|
|
||||||
actualPythonVersion = """${{ needs.Params_Include.outputs.python_version }}"""
|
|
||||||
actualPythonJobs = json_loads("""${{ needs.Params_Include.outputs.python_jobs }}""".replace("'", '"'))
|
|
||||||
actualArtifactNames = json_loads("""${{ needs.Params_Include.outputs.artifact_names }}""".replace("'", '"'))
|
|
||||||
errors = 0
|
|
||||||
|
|
||||||
if actualPythonVersion != expectedPythonVersion:
|
|
||||||
print(f"'python_version' does not match: '{actualPythonVersion}' != '{expectedPythonVersion}'.")
|
|
||||||
errors += 1
|
|
||||||
if len(actualPythonJobs) != len(expectedJobs):
|
|
||||||
print(f"Number of 'python_jobs' does not match: {len(actualPythonJobs)} != {len(expectedJobs)}.")
|
|
||||||
print("Actual jobs:")
|
|
||||||
for job in actualPythonJobs:
|
|
||||||
if job['system'] == "msys2":
|
|
||||||
print(f" {job['runtime'].lower()}:{job['python']}")
|
|
||||||
else:
|
|
||||||
print(f" {job['system']}:{job['python']}")
|
|
||||||
print("Expected jobs:")
|
|
||||||
for job in expectedJobs:
|
|
||||||
print(f" {job}")
|
|
||||||
errors += 1
|
|
||||||
if len(actualArtifactNames) != len(expectedArtifacts):
|
|
||||||
print(f"Number of 'artifact_names' does not match: {len(actualArtifactNames)} != {len(expectedArtifacts)}.")
|
|
||||||
errors += 1
|
|
||||||
else:
|
|
||||||
for key, actual, expected in zipdicts(actualArtifactNames, expectedArtifacts):
|
|
||||||
if actual != expected:
|
|
||||||
print(f"Artifact name '{key}' does not match: {actual} != {expected}.")
|
|
||||||
errors += 1
|
|
||||||
|
|
||||||
if errors == 0:
|
|
||||||
print(f"All checks PASSED.")
|
|
||||||
exit(errors)
|
|
||||||
|
|
||||||
Params_Check_Exclude:
|
Params_Check_Exclude:
|
||||||
needs:
|
needs:
|
||||||
@@ -375,75 +157,19 @@ jobs:
|
|||||||
run:
|
run:
|
||||||
shell: python
|
shell: python
|
||||||
steps:
|
steps:
|
||||||
- name: Install dependencies
|
- name: Checkout repository to access local Action
|
||||||
shell: bash
|
uses: actions/checkout@v5
|
||||||
run: pip install --disable-pip-version-check --break-system-packages pyTooling
|
|
||||||
|
|
||||||
- name: Checking results from 'Params_Exclude'
|
- name: Checking job matrix from 'Params_Exclude'
|
||||||
run: |
|
uses: ./.github/actions/CheckJobMatrix
|
||||||
from json import loads as json_loads
|
with:
|
||||||
from sys import exit
|
expected-default-version: '3.13'
|
||||||
|
expected-python-versions: '["3.13"]'
|
||||||
from pyTooling.Common import zipdicts
|
expected-systems: '["ubuntu", "macos", "macos-arm"]'
|
||||||
|
expected-exclude-jobs: '[]'
|
||||||
expectedPythonVersion = "3.13"
|
expected-include-jobs: '[]'
|
||||||
expectedPythons = ["3.13"]
|
generated-default-version: ${{ needs.Params_Exclude.outputs.python_version }}
|
||||||
expectedSystems = ["ubuntu", "macos", "macos-arm"]
|
generated-jobmatrix: ${{ needs.Params_Exclude.outputs.python_jobs }}
|
||||||
excludedJobs = []
|
|
||||||
includeJobs = []
|
|
||||||
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons if f"{system}:{python}" not in excludedJobs] + includeJobs
|
|
||||||
expectedName = "Example"
|
|
||||||
expectedArtifacts = {
|
|
||||||
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
|
|
||||||
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
|
|
||||||
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
|
|
||||||
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
|
|
||||||
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
|
|
||||||
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
|
|
||||||
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
|
|
||||||
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
|
|
||||||
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
|
|
||||||
"statictyping_cobertura": f"{expectedName}-StaticTyping-Cobertura-XML",
|
|
||||||
"statictyping_junit": f"{expectedName}-StaticTyping-JUnit-XML",
|
|
||||||
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
|
|
||||||
"package_all": f"{expectedName}-Packages",
|
|
||||||
"documentation_html": f"{expectedName}-Documentation-HTML",
|
|
||||||
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
|
|
||||||
"documentation_pdf": f"{expectedName}-Documentation-PDF",
|
|
||||||
}
|
|
||||||
|
|
||||||
actualPythonVersion = """${{ needs.Params_Exclude.outputs.python_version }}"""
|
|
||||||
actualPythonJobs = json_loads("""${{ needs.Params_Exclude.outputs.python_jobs }}""".replace("'", '"'))
|
|
||||||
actualArtifactNames = json_loads("""${{ needs.Params_Exclude.outputs.artifact_names }}""".replace("'", '"'))
|
|
||||||
errors = 0
|
|
||||||
|
|
||||||
if actualPythonVersion != expectedPythonVersion:
|
|
||||||
print(f"'python_version' does not match: '{actualPythonVersion}' != '{expectedPythonVersion}'.")
|
|
||||||
errors += 1
|
|
||||||
if len(actualPythonJobs) != len(expectedJobs):
|
|
||||||
print(f"Number of 'python_jobs' does not match: {len(actualPythonJobs)} != {len(expectedJobs)}.")
|
|
||||||
print("Actual jobs:")
|
|
||||||
for job in actualPythonJobs:
|
|
||||||
if job['system'] == "msys2":
|
|
||||||
print(f" {job['runtime'].lower()}:{job['python']}")
|
|
||||||
else:
|
|
||||||
print(f" {job['system']}:{job['python']}")
|
|
||||||
print("Expected jobs:")
|
|
||||||
for job in expectedJobs:
|
|
||||||
print(f" {job}")
|
|
||||||
errors += 1
|
|
||||||
if len(actualArtifactNames) != len(expectedArtifacts):
|
|
||||||
print(f"Number of 'artifact_names' does not match: {len(actualArtifactNames)} != {len(expectedArtifacts)}.")
|
|
||||||
errors += 1
|
|
||||||
else:
|
|
||||||
for key, actual, expected in zipdicts(actualArtifactNames, expectedArtifacts):
|
|
||||||
if actual != expected:
|
|
||||||
print(f"Artifact name '{key}' does not match: {actual} != {expected}.")
|
|
||||||
errors += 1
|
|
||||||
|
|
||||||
if errors == 0:
|
|
||||||
print(f"All checks PASSED.")
|
|
||||||
exit(errors)
|
|
||||||
|
|
||||||
Params_Check_Disable:
|
Params_Check_Disable:
|
||||||
needs:
|
needs:
|
||||||
@@ -453,75 +179,19 @@ jobs:
|
|||||||
run:
|
run:
|
||||||
shell: python
|
shell: python
|
||||||
steps:
|
steps:
|
||||||
- name: Install dependencies
|
- name: Checkout repository to access local Action
|
||||||
shell: bash
|
uses: actions/checkout@v5
|
||||||
run: pip install --disable-pip-version-check --break-system-packages pyTooling
|
|
||||||
|
|
||||||
- name: Checking results from 'Params_Disable'
|
- name: Checking job matrix from 'Params_Disable'
|
||||||
run: |
|
uses: ./.github/actions/CheckJobMatrix
|
||||||
from json import loads as json_loads
|
with:
|
||||||
from sys import exit
|
expected-default-version: '3.13'
|
||||||
|
expected-python-versions: '["3.13"]'
|
||||||
from pyTooling.Common import zipdicts
|
expected-systems: '["ubuntu", "windows", "macos", "macos-arm"]'
|
||||||
|
expected-exclude-jobs: '["windows:3.13"]'
|
||||||
expectedPythonVersion = "3.13"
|
expected-include-jobs: '[]'
|
||||||
expectedPythons = ["3.13"]
|
generated-default-version: ${{ needs.Params_Disable.outputs.python_version }}
|
||||||
expectedSystems = ["ubuntu", "windows", "macos", "macos-arm"]
|
generated-jobmatrix: ${{ needs.Params_Disable.outputs.python_jobs }}
|
||||||
excludedJobs = ["windows:3.13"]
|
|
||||||
includeJobs = []
|
|
||||||
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons if f"{system}:{python}" not in excludedJobs] + includeJobs
|
|
||||||
expectedName = "Example"
|
|
||||||
expectedArtifacts = {
|
|
||||||
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
|
|
||||||
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
|
|
||||||
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
|
|
||||||
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
|
|
||||||
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
|
|
||||||
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
|
|
||||||
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
|
|
||||||
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
|
|
||||||
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
|
|
||||||
"statictyping_cobertura": f"{expectedName}-StaticTyping-Cobertura-XML",
|
|
||||||
"statictyping_junit": f"{expectedName}-StaticTyping-JUnit-XML",
|
|
||||||
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
|
|
||||||
"package_all": f"{expectedName}-Packages",
|
|
||||||
"documentation_html": f"{expectedName}-Documentation-HTML",
|
|
||||||
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
|
|
||||||
"documentation_pdf": f"{expectedName}-Documentation-PDF",
|
|
||||||
}
|
|
||||||
|
|
||||||
actualPythonVersion = """${{ needs.Params_Disable.outputs.python_version }}"""
|
|
||||||
actualPythonJobs = json_loads("""${{ needs.Params_Disable.outputs.python_jobs }}""".replace("'", '"'))
|
|
||||||
actualArtifactNames = json_loads("""${{ needs.Params_Disable.outputs.artifact_names }}""".replace("'", '"'))
|
|
||||||
errors = 0
|
|
||||||
|
|
||||||
if actualPythonVersion != expectedPythonVersion:
|
|
||||||
print(f"'python_version' does not match: '{actualPythonVersion}' != '{expectedPythonVersion}'.")
|
|
||||||
errors += 1
|
|
||||||
if len(actualPythonJobs) != len(expectedJobs):
|
|
||||||
print(f"Number of 'python_jobs' does not match: {len(actualPythonJobs)} != {len(expectedJobs)}.")
|
|
||||||
print("Actual jobs:")
|
|
||||||
for job in actualPythonJobs:
|
|
||||||
if job['system'] == "msys2":
|
|
||||||
print(f" {job['runtime'].lower()}:{job['python']}")
|
|
||||||
else:
|
|
||||||
print(f" {job['system']}:{job['python']}")
|
|
||||||
print("Expected jobs:")
|
|
||||||
for job in expectedJobs:
|
|
||||||
print(f" {job}")
|
|
||||||
errors += 1
|
|
||||||
if len(actualArtifactNames) != len(expectedArtifacts):
|
|
||||||
print(f"Number of 'artifact_names' does not match: {len(actualArtifactNames)} != {len(expectedArtifacts)}.")
|
|
||||||
errors += 1
|
|
||||||
else:
|
|
||||||
for key, actual, expected in zipdicts(actualArtifactNames, expectedArtifacts):
|
|
||||||
if actual != expected:
|
|
||||||
print(f"Artifact name '{key}' does not match: {actual} != {expected}.")
|
|
||||||
errors += 1
|
|
||||||
|
|
||||||
if errors == 0:
|
|
||||||
print(f"All checks PASSED.")
|
|
||||||
exit(errors)
|
|
||||||
|
|
||||||
Params_Check_All:
|
Params_Check_All:
|
||||||
needs:
|
needs:
|
||||||
@@ -531,72 +201,16 @@ jobs:
|
|||||||
run:
|
run:
|
||||||
shell: python
|
shell: python
|
||||||
steps:
|
steps:
|
||||||
- name: Install dependencies
|
- name: Checkout repository to access local Action
|
||||||
shell: bash
|
uses: actions/checkout@v5
|
||||||
run: pip install --disable-pip-version-check --break-system-packages pyTooling
|
|
||||||
|
|
||||||
- name: Checking results from 'Params_All'
|
- name: Checking job matrix from 'Params_All'
|
||||||
run: |
|
uses: ./.github/actions/CheckJobMatrix
|
||||||
from json import loads as json_loads
|
with:
|
||||||
from sys import exit
|
expected-default-version: '3.13'
|
||||||
|
expected-python-versions: '["3.12", "3.13"]'
|
||||||
from pyTooling.Common import zipdicts
|
expected-systems: '["ubuntu", "windows", "macos-arm"]'
|
||||||
|
expected-exclude-jobs: '[]'
|
||||||
expectedPythonVersion = "3.13"
|
expected-include-jobs: '["windows:3.10", "windows:3.11", "windows:3.13"]'
|
||||||
expectedPythons = ["3.12", "3.13"]
|
generated-default-version: ${{ needs.Params_All.outputs.python_version }}
|
||||||
expectedSystems = ["ubuntu", "macos-arm", "windows"]
|
generated-jobmatrix: ${{ needs.Params_All.outputs.python_jobs }}
|
||||||
excludedJobs = []
|
|
||||||
includeJobs = ["windows:3.10", "windows:3.11", "windows:3.13"]
|
|
||||||
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons if f"{system}:{python}" not in excludedJobs] + includeJobs
|
|
||||||
expectedName = "Example"
|
|
||||||
expectedArtifacts = {
|
|
||||||
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
|
|
||||||
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
|
|
||||||
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
|
|
||||||
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
|
|
||||||
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
|
|
||||||
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
|
|
||||||
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
|
|
||||||
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
|
|
||||||
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
|
|
||||||
"statictyping_cobertura": f"{expectedName}-StaticTyping-Cobertura-XML",
|
|
||||||
"statictyping_junit": f"{expectedName}-StaticTyping-JUnit-XML",
|
|
||||||
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
|
|
||||||
"package_all": f"{expectedName}-Packages",
|
|
||||||
"documentation_html": f"{expectedName}-Documentation-HTML",
|
|
||||||
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
|
|
||||||
"documentation_pdf": f"{expectedName}-Documentation-PDF",
|
|
||||||
}
|
|
||||||
|
|
||||||
actualPythonVersion = """${{ needs.Params_All.outputs.python_version }}"""
|
|
||||||
actualPythonJobs = json_loads("""${{ needs.Params_All.outputs.python_jobs }}""".replace("'", '"'))
|
|
||||||
actualArtifactNames = json_loads("""${{ needs.Params_All.outputs.artifact_names }}""".replace("'", '"'))
|
|
||||||
errors = 0
|
|
||||||
|
|
||||||
if actualPythonVersion != expectedPythonVersion:
|
|
||||||
print(f"'python_version' does not match: '{actualPythonVersion}' != '{expectedPythonVersion}'.")
|
|
||||||
errors += 1
|
|
||||||
if len(actualPythonJobs) != len(expectedJobs):
|
|
||||||
print(f"Number of 'python_jobs' does not match: {len(actualPythonJobs)} != {len(expectedJobs)}.")
|
|
||||||
print("Actual jobs:")
|
|
||||||
for job in actualPythonJobs:
|
|
||||||
if job['system'] == "msys2":
|
|
||||||
print(f" {job['runtime'].lower()}:{job['python']}")
|
|
||||||
else:
|
|
||||||
print(f" {job['system']}:{job['python']}")
|
|
||||||
print("Expected jobs:")
|
|
||||||
for job in expectedJobs:
|
|
||||||
print(f" {job}")
|
|
||||||
errors += 1
|
|
||||||
if len(actualArtifactNames) != len(expectedArtifacts):
|
|
||||||
print(f"Number of 'artifact_names' does not match: {len(actualArtifactNames)} != {len(expectedArtifacts)}.")
|
|
||||||
errors += 1
|
|
||||||
else:
|
|
||||||
for key, actual, expected in zipdicts(actualArtifactNames, expectedArtifacts):
|
|
||||||
if actual != expected:
|
|
||||||
print(f"Artifact name '{key}' does not match: {actual} != {expected}.")
|
|
||||||
errors += 1
|
|
||||||
|
|
||||||
if errors == 0:
|
|
||||||
print(f"All checks PASSED.")
|
|
||||||
exit(errors)
|
|
||||||
|
|||||||
Reference in New Issue
Block a user