Skip to content

Commit ac2027f

Browse files
committed
fix(test-suite): avoid rerunning extra coprocessor migration
1 parent a26fbf1 commit ac2027f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test-suite/fhevm/scripts/deploy-fhevm-stack.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -539,9 +539,9 @@ run_additional_coprocessor_instance() {
539539

540540
log_info "Starting additional coprocessor instance #$instance_idx (runtime phase)"
541541
if [[ "$FORCE_BUILD" == true ]]; then
542-
docker compose -p "${PROJECT}" --env-file "$env_file" -f "$temp_compose" up --build -d "${runtime_services[@]}"
542+
docker compose -p "${PROJECT}" --env-file "$env_file" -f "$temp_compose" up --build --no-deps -d "${runtime_services[@]}"
543543
else
544-
docker compose -p "${PROJECT}" --env-file "$env_file" -f "$temp_compose" up -d "${runtime_services[@]}"
544+
docker compose -p "${PROJECT}" --env-file "$env_file" -f "$temp_compose" up --no-deps -d "${runtime_services[@]}"
545545
fi
546546

547547
wait_for_service "$temp_compose" "coprocessor${instance_idx}-host-listener" "true"

0 commit comments

Comments
 (0)