don't run server as part of stack
Some checks failed
Test the stack. / Run integration tests (pull_request) Has been cancelled
Test the stack. / Run unit tests (pull_request) Has been cancelled

This commit is contained in:
Roy Crihfield 2024-08-06 19:03:20 -05:00
parent 065e71fc10
commit 32353be7d5

View File

@ -22,11 +22,15 @@ if [[ -z $SKIP_BUILD ]]; then
# Prevent conflicting tty output # Prevent conflicting tty output
export BUILDKIT_PROGRESS=plain export BUILDKIT_PROGRESS=plain
$laconic_so setup-repositories # The server itself will be run separately
$laconic_so build-containers $laconic_so setup-repositories \
--exclude git.vdb.to/cerc-io/ipld-eth-server
$laconic_so build-containers \
--exclude cerc/ipld-eth-server
fi fi
if ! $laconic_so deploy \ if ! $laconic_so deploy \
--exclude ipld-eth-server \
--env-file $CONFIG_DIR/stack.env \ --env-file $CONFIG_DIR/stack.env \
--cluster test up --cluster test up
then then