Skip to content

Commit

Permalink
Need to use fromJSON() for non-string
Browse files Browse the repository at this point in the history
Run-GHA: true
Skip-PR-comments: true
Test-tag: always_passes,vm

Required-githooks: true

Signed-off-by: Brian J. Murrell <[email protected]>
  • Loading branch information
brianjmurrell committed Oct 21, 2024
1 parent 8f92f86 commit bb0a4c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bullseye-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ jobs:
EL8_BUILD_VERSION: ${{ needs.Variables.outputs.EL8_BUILD_VERSION }}
EL9_BUILD_VERSION: ${{ needs.Variables.outputs.EL9_BUILD_VERSION }}
LEAP15_VERSION: ${{ needs.Variables.outputs.LEAP15_VERSION }}
PACKAGING_DIR: ${{ needs.Variables.outputs.PACKAGING_DIR}}
COVFN_DISABLED: ${{ needs.Variables.outputs.COVFN_DISABLED}}
PACKAGING_DIR: ${{ needs.Variables.outputs.PACKAGING_DIR }}
COVFN_DISABLED: ${{ fromJSON(needs.Variables.outputs.COVFN_DISABLED) }}

Calc-functional-matrix:
name: Calculate Functional Testing Matrix
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rpm-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ jobs:
EL8_BUILD_VERSION: ${{ needs.Variables.outputs.EL8_BUILD_VERSION }}
EL9_BUILD_VERSION: ${{ needs.Variables.outputs.EL9_BUILD_VERSION }}
LEAP15_VERSION: ${{ needs.Variables.outputs.LEAP15_VERSION }}
PACKAGING_DIR: ${{ needs.Variables.outputs.PACKAGING_DIR}}
COVFN_DISABLED: ${{ needs.Variables.outputs.COVFN_DISABLED}}
PACKAGING_DIR: ${{ needs.Variables.outputs.PACKAGING_DIR }}
COVFN_DISABLED: ${{ fromJSON(needs.Variables.outputs.COVFN_DISABLED) }}

Calc-functional-matrix:
name: Calculate Functional Testing Matrix
Expand Down

0 comments on commit bb0a4c6

Please sign in to comment.