Skip to content

Commit

Permalink
ci: Fix rust.yml matrix error
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelburnham committed Nov 4, 2024
1 parent a945131 commit 831d3d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ jobs:
test:
needs: changes
runs-on: warp-ubuntu-latest-x64-16x
if: ${{ needs.changes.outputs.packages != '[]' && needs.changes.outputs.packages != '' }}
if: ${{ needs.changes.outputs.lc-packages != '[]' && needs.changes.outputs.lc-packages != '' }}
strategy:
fail-fast: false
matrix:
# Parse JSON array containing names of all changed light client packages,
# e.g. ['aptos', 'ethereum', 'kadena'] if `aptos`, `ethereum` and `kadena` contain changes.
# e.g. ['aptos', 'ethereum', 'kadena'] if `aptos`, `ethereum`, `kadena`, and `fixture-generator` contain changes.
package: ${{ fromJSON(needs.changes.outputs.lc-packages) }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
cycle-count-regression:
needs: changes
runs-on: warp-ubuntu-latest-x64-32x
if: ${{ needs.changes.outputs.packages != '[]' && needs.changes.outputs.packages != '' }}
if: ${{ needs.changes.outputs.lc-packages != '[]' && needs.changes.outputs.lc-packages != '' }}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 831d3d6

Please sign in to comment.