Commit f2e88d9b authored by Joshua Gutow's avatar Joshua Gutow Committed by GitHub

CI: Check if we should run in bedrock-echidna-run (#4362)

The previous steps (required for this one) had the check changed script.
This means that the required build artifacts were not being created and
then cause this step to fail.
parent fcb2a125
...@@ -302,6 +302,14 @@ jobs: ...@@ -302,6 +302,14 @@ jobs:
steps: steps:
- checkout - checkout
- attach_workspace: {at: "."} - attach_workspace: {at: "."}
- run:
name: Check if we should run
command: |
shopt -s inherit_errexit
CHANGED=$(check-changed "(contracts-bedrock/contracts)" || echo "TRUE")
if [[ "$CHANGED" = "FALSE" ]]; then
circleci step halt
fi
- run: - run:
name: Echidna Fuzz <<parameters.echidna_target>> name: Echidna Fuzz <<parameters.echidna_target>>
command: yarn echidna:<<parameters.echidna_target>> command: yarn echidna:<<parameters.echidna_target>>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment