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

Fix incorrect docker compose wait command #130

Closed
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
3 changes: 2 additions & 1 deletion tools/test-deployment-docker-compose.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ trap cleanup EXIT
# --- Run remote execution ---
rm -rf volumes/storage-*
./run.sh -d
docker-compose up --wait || true
# NB: 'up' exits with non-zero exit code.
docker compose up --wait || true
bazel_command_log="$(bazel info output_base)/command.log"
bazel clean
bazel test --color=no --curses=no --config=remote-ubuntu-22-04 --disk_cache= @abseil-hello//:hello_test
Expand Down
Loading