Skip to content

Commit

Permalink
add skip
Browse files Browse the repository at this point in the history
  • Loading branch information
jmurret committed Jun 28, 2023
1 parent 450ca91 commit 522d04d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/reusable-verify-release-zip.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
{ os: "solaris", arch: "amd64" },
{ os: "windows", arch: "386" },
{ os: "windows", arch: "amd64" }
]
],
verify: true
},
{
product: consul,
Expand All @@ -57,7 +58,8 @@ jobs:
{ os: "solaris", arch: "amd64" },
{ os: "windows", arch: "386" },
{ os: "windows", arch: "amd64" }
]
],
verify: true
},
{
product: consul,
Expand All @@ -68,12 +70,14 @@ jobs:
{ os: "linux", arch: "arm64" },
{ os: "windows", arch: "amd64" },
{ os: "windows", arch: "arm64" }
]
],
verify: ${{ inputs.include-fips }}
}
]
fail-fast: false
steps:
- name: verify zips
if: ${{ matrix.release.verify }}
run: |
zips=$(echo '${{ toJSON(matrix.release.targets) }}' | jq -r 'map("${{ matrix.release.product }}" + "${{ matrix.release.suffix }}" + "_" + "${{ inputs.version }}" + "_" + .os + "_" + .arch + ".zip" )| join("|")' )
expected=$(echo '${{ toJSON(matrix.release.targets) }}' | jq length)
Expand Down

0 comments on commit 522d04d

Please sign in to comment.