Skip to content

Commit

Permalink
fix(ci): Action tests
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Oct 3, 2024
1 parent 68b48fc commit e6ba309
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,12 @@ test-online:
just test "-E 'test(test_online)'"

# Run action tests for the client program on the native target
action-tests test_name='Test_ProgramAction':
action-tests test_name='Test_ProgramAction': monorepo
#!/bin/bash

if [ ! -d "monorepo" ]; then
echo "Monorepo not found. Cloning..."
git clone https://github.com/ethereum-optimism/monorepo
fi

if [ ! -d "monorepo/.devnet" ]; then
echo "Building devnet allocs for the monorepo"
(cd monorepo && make devnet-allocs)
(cd monorepo && make devnet-allocs-tests)
fi

echo "Building client and host programs for the native target"
Expand Down

0 comments on commit e6ba309

Please sign in to comment.