Skip to content

Commit c2ed408

Browse files
committed
fix: Remove unnecessary cleanup step for Anvil processes in Makefile
1 parent 7005fd5 commit c2ed408

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
ANVIL_SEPOLIA_RPC_URL: http://localhost:8545
7777
ANVIL_ARBITRUM_SEPOLIA_RPC_URL: http://localhost:8546
7878
run: |
79-
forge cache clean all && make fork-sepolia & make fork-arbitrum-sepolia & sleep 10 && make deploy-on-anvil
79+
make fork-sepolia & make fork-arbitrum-sepolia & sleep 10 && make deploy-on-anvil
8080
8181
- name: Deploy contracts on Ethereum Mainnet or Sepolia
8282
if: inputs.network == 'sepolia' || inputs.network == 'ethereum'

Makefile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,6 @@ generate-coverage:
4444
clean:
4545
forge clean
4646

47-
cleanup-anvil:
48-
@echo "Stopping all anvil processes..."
49-
@-pkill -f "anvil.*port" 2>/dev/null || echo "No anvil processes found to stop"
50-
@sleep 2
51-
@echo "Anvil cleanup completed."
52-
5347
#
5448
# High-level deployment targets
5549
#

0 commit comments

Comments
 (0)