Skip to content

Commit 7000dc9

Browse files
committed
fix: resolve KANI Formal Verification workflow startup failures
The 'KANI Formal Verification' workflow was failing at startup due to invalid dynamic output names in the GitHub Actions configuration. Output keys must be static strings, not expressions with matrix variables. - Remove dynamic output name: asil-${{ matrix.asil_level }}-status - Add static outputs: verification-status and asil-level - This should resolve the consistent startup_failure status for this workflow The other workflow 'Formal Verification with KANI' is working correctly.
1 parent aedb7da commit 7000dc9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/kani-regression.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ jobs:
7777

7878
timeout-minutes: ${{ matrix.timeout }}
7979
outputs:
80-
asil-${{ matrix.asil_level }}-status: ${{ steps.verify.outputs.status }}
80+
verification-status: ${{ steps.verify.outputs.status }}
81+
asil-level: ${{ matrix.asil_level }}
8182

8283
steps:
8384
- name: Checkout repository

0 commit comments

Comments
 (0)