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 8d59c55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/test-deployment-docker-compose.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ trap cleanup EXIT
# --- Run remote execution ---
rm -rf volumes/storage-*
./run.sh -d
docker-compose up --wait || true
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 8d59c55

Please sign in to comment.