Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leovct committed Nov 28, 2024
1 parent 312ff69 commit ec9fe21
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ jobs:
# Some of the test environments, the pessimistic envs, require the SP1 private key.
# This check makes sure that such environments will be tested only if the necessary secrets
# are available, preventing failures on pull requests from forked repositories.
if: ${{ !contains(matrix.e2e-group, 'pessimistic') || (contains(matrix.e2e-group, 'pessimistic') && secrets.SP1_PRIVATE_KEY) }}
if: >
${{
!contains(matrix.e2e-group, 'pessimistic') ||
(contains(matrix.e2e-group, 'pessimistic') && env.agglayer_prover_sp1_key)
}}
env:
KURTOSIS_FOLDER: ${{ github.workspace }}
BATS_LIB_PATH: /usr/lib/
Expand Down

0 comments on commit ec9fe21

Please sign in to comment.