Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update justfile with custom solc #418

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
solc_file := if os() == "macos" { "./bin/solc-mac" } else { "./bin/solc-static-linux" }

test: test-forge
prep: fix snapshots
snapshots: snapshots-forge

test-forge: install-forge build-forge
forge test
forge test --use {{ solc_file }}

build-forge: install-forge
forge build

snapshots-forge: install-forge test-forge
FOUNDRY_FUZZ_SEED=0x4444 forge snapshot
forge build --use {{ solc_file }}

install-forge:
forge install
Expand Down