Skip to content

Commit

Permalink
chore: Do not download foundry during L1 contracts fast bootstrap (#4865
Browse files Browse the repository at this point in the history
)

We're downloading the pre-built artifacts after-all, so no point in
installing Foundry.
  • Loading branch information
spalladino authored Mar 1, 2024
1 parent a1b3c01 commit c4357c8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions l1-contracts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ if [ -n "$CMD" ]; then
fi
fi

# Install foundry.
. ./scripts/install_foundry.sh

# Attempt to just pull artefacts from CI and exit on success.
[ -n "${USE_CACHE:-}" ] && ./bootstrap_cache.sh && exit

# Install foundry.
. ./scripts/install_foundry.sh

# Clean
rm -rf broadcast cache out serve

Expand Down

0 comments on commit c4357c8

Please sign in to comment.