Commit c8d8d7b6 authored by Matthew Slipper's avatar Matthew Slipper Committed by GitHub

feat/upgrade forge (#13305)

* Revert "maint: bump forge version (#13301)"

This reverts commit a2e7d852.

* Reapply "maint: bump forge version (#13301)"

This reverts commit 048f0742eaa338e54105ab23a919af8a22f13e0a.

* Rebuild all on mise.toml

* fix: verify mise dependencies if necessary

---------
Co-authored-by: default avatarKelvin Fichter <kelvinfichter@gmail.com>
parent a47441c8
......@@ -129,6 +129,14 @@ commands:
# of the -j parameter, which speeds it up a lot.
git submodule update --init --recursive --force -j 8
working_directory: packages/contracts-bedrock
- run:
name: Verify mise dependencies
command: |
if command -v mise &> /dev/null; then
mise install
else
echo "mise not found, skipping"
fi
notify-failures-on-develop:
description: "Notify Slack"
......
......@@ -11,6 +11,7 @@ REBUILD_ALL_PATTERNS = [
r'^\.github/\.*',
r'^package\.json',
r'ops/check-changed/.*',
r'^mise.toml',
]
GO_PATTERNS = [
......
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