From 1295f77461562e1c5c48d2c62f6d940c53345e0e Mon Sep 17 00:00:00 2001 From: MyroTk Date: Thu, 8 Jan 2026 10:29:19 -0500 Subject: [PATCH 1/4] Use regression hash from repo variable --- .github/workflows/master.yml | 4 ++-- .github/workflows/pull_request.yml | 4 ++-- ci/praktika/yaml_additional_templates.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 92750333e084..bb9961c6e12d 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -4178,7 +4178,7 @@ jobs: secrets: inherit with: runner_type: altinity-regression-tester - commit: bd9d71b4ccc80bb5b1a316b43b60f59c0c592898 + commit: {vars.REGRESSION_HASH} arch: x86 build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} timeout_minutes: 300 @@ -4190,7 +4190,7 @@ jobs: secrets: inherit with: runner_type: altinity-regression-tester-aarch64 - commit: bd9d71b4ccc80bb5b1a316b43b60f59c0c592898 + commit: {vars.REGRESSION_HASH} arch: aarch64 build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} timeout_minutes: 300 diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 51462a8c968a..0a611c2ac88a 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -4134,7 +4134,7 @@ jobs: secrets: inherit with: runner_type: altinity-regression-tester - commit: bd9d71b4ccc80bb5b1a316b43b60f59c0c592898 + commit: {vars.REGRESSION_HASH} arch: x86 build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} timeout_minutes: 300 @@ -4146,7 +4146,7 @@ jobs: secrets: inherit with: runner_type: altinity-regression-tester-aarch64 - commit: bd9d71b4ccc80bb5b1a316b43b60f59c0c592898 + commit: {vars.REGRESSION_HASH} arch: aarch64 build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} timeout_minutes: 300 diff --git a/ci/praktika/yaml_additional_templates.py b/ci/praktika/yaml_additional_templates.py index 1ef71df397b9..674cf8d4257d 100644 --- a/ci/praktika/yaml_additional_templates.py +++ b/ci/praktika/yaml_additional_templates.py @@ -35,7 +35,7 @@ class AltinityWorkflowTemplates: echo "Workflow Run Report: [View Report]($REPORT_LINK)" >> $GITHUB_STEP_SUMMARY """ # Additional jobs - REGRESSION_HASH = f"bd9d71b4ccc80bb5b1a316b43b60f59c0c592898" + REGRESSION_HASH = f"{{vars.REGRESSION_HASH}}" ALTINITY_JOBS = { "GrypeScan": r""" GrypeScanServer: From 28bb0853fd74ebf51ecc01078b4082acca76a8f6 Mon Sep 17 00:00:00 2001 From: MyroTk Date: Thu, 8 Jan 2026 10:46:24 -0500 Subject: [PATCH 2/4] Trigger workflow From f25858a5be317d372022f1357bbb453a04aa6ce6 Mon Sep 17 00:00:00 2001 From: MyroTk Date: Thu, 8 Jan 2026 10:48:57 -0500 Subject: [PATCH 3/4] fix python string expansion --- .github/workflows/master.yml | 4 ++-- .github/workflows/pull_request.yml | 4 ++-- ci/praktika/yaml_additional_templates.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index bb9961c6e12d..319c00e76430 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -4178,7 +4178,7 @@ jobs: secrets: inherit with: runner_type: altinity-regression-tester - commit: {vars.REGRESSION_HASH} + commit: {{vars.REGRESSION_HASH}} arch: x86 build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} timeout_minutes: 300 @@ -4190,7 +4190,7 @@ jobs: secrets: inherit with: runner_type: altinity-regression-tester-aarch64 - commit: {vars.REGRESSION_HASH} + commit: {{vars.REGRESSION_HASH}} arch: aarch64 build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} timeout_minutes: 300 diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 0a611c2ac88a..ace9b48424bb 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -4134,7 +4134,7 @@ jobs: secrets: inherit with: runner_type: altinity-regression-tester - commit: {vars.REGRESSION_HASH} + commit: {{vars.REGRESSION_HASH}} arch: x86 build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} timeout_minutes: 300 @@ -4146,7 +4146,7 @@ jobs: secrets: inherit with: runner_type: altinity-regression-tester-aarch64 - commit: {vars.REGRESSION_HASH} + commit: {{vars.REGRESSION_HASH}} arch: aarch64 build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} timeout_minutes: 300 diff --git a/ci/praktika/yaml_additional_templates.py b/ci/praktika/yaml_additional_templates.py index 674cf8d4257d..8283fc0f2ae9 100644 --- a/ci/praktika/yaml_additional_templates.py +++ b/ci/praktika/yaml_additional_templates.py @@ -35,7 +35,7 @@ class AltinityWorkflowTemplates: echo "Workflow Run Report: [View Report]($REPORT_LINK)" >> $GITHUB_STEP_SUMMARY """ # Additional jobs - REGRESSION_HASH = f"{{vars.REGRESSION_HASH}}" + REGRESSION_HASH = "{{vars.REGRESSION_HASH}}" ALTINITY_JOBS = { "GrypeScan": r""" GrypeScanServer: From a1ba4cf1fc38d48d0652487d7dc08cfda309245c Mon Sep 17 00:00:00 2001 From: MyroTk Date: Thu, 8 Jan 2026 10:53:31 -0500 Subject: [PATCH 4/4] Use Repo var for regression --- .github/workflows/master.yml | 4 ++-- .github/workflows/pull_request.yml | 4 ++-- ci/praktika/yaml_additional_templates.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 319c00e76430..e6aa2f60515d 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -4178,7 +4178,7 @@ jobs: secrets: inherit with: runner_type: altinity-regression-tester - commit: {{vars.REGRESSION_HASH}} + commit: ${{vars.REGRESSION_HASH}} arch: x86 build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} timeout_minutes: 300 @@ -4190,7 +4190,7 @@ jobs: secrets: inherit with: runner_type: altinity-regression-tester-aarch64 - commit: {{vars.REGRESSION_HASH}} + commit: ${{vars.REGRESSION_HASH}} arch: aarch64 build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} timeout_minutes: 300 diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index ace9b48424bb..455cf56f3f09 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -4134,7 +4134,7 @@ jobs: secrets: inherit with: runner_type: altinity-regression-tester - commit: {{vars.REGRESSION_HASH}} + commit: ${{vars.REGRESSION_HASH}} arch: x86 build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} timeout_minutes: 300 @@ -4146,7 +4146,7 @@ jobs: secrets: inherit with: runner_type: altinity-regression-tester-aarch64 - commit: {{vars.REGRESSION_HASH}} + commit: ${{vars.REGRESSION_HASH}} arch: aarch64 build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} timeout_minutes: 300 diff --git a/ci/praktika/yaml_additional_templates.py b/ci/praktika/yaml_additional_templates.py index 8283fc0f2ae9..31242e95d7ed 100644 --- a/ci/praktika/yaml_additional_templates.py +++ b/ci/praktika/yaml_additional_templates.py @@ -35,7 +35,7 @@ class AltinityWorkflowTemplates: echo "Workflow Run Report: [View Report]($REPORT_LINK)" >> $GITHUB_STEP_SUMMARY """ # Additional jobs - REGRESSION_HASH = "{{vars.REGRESSION_HASH}}" + REGRESSION_HASH = "${{vars.REGRESSION_HASH}}" ALTINITY_JOBS = { "GrypeScan": r""" GrypeScanServer: