Skip to content

Commit

Permalink
Fix incorrect docker compose wait command
Browse files Browse the repository at this point in the history
The recent change buildbarn#129 used the old 'docker-compose', which did not have
the '--wait' flag. This keeps the composition modern in line with buildbarn#126 .
  • Loading branch information
stagnation committed Mar 1, 2024
1 parent a8234ed commit 7949fa4
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 7949fa4

Please sign in to comment.