From f71c48e14f9ab83f4508df1dc4fd21642a136984 Mon Sep 17 00:00:00 2001 From: Peter Somogyvari Date: Tue, 2 Apr 2024 08:51:31 -0700 Subject: [PATCH] ci(ci.sh): fix Docker Compose presence check - migrate to sub-command 1. The old way to use docker compose was through the standalone binary `docker-compose` 2. This was working for a while but now the auto-upgrades that we cannot seem to avoid have caught up with us and broke ci.sh in the GitHub action runners because the standalone binary is no longer available at all and therefore the migration must happen. 3. Point 2 is just a theory but one that is considered to be very likely correct. 4. It is to be seen if we'll have any other downstream issues such as the tests failing in other ways due to this underlying docker change. Signed-off-by: Peter Somogyvari --- tools/ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci.sh b/tools/ci.sh index f8dc8264f5..305f8d424c 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -115,7 +115,7 @@ function mainTask() fi docker --version - docker-compose --version + docker compose version node --version npm --version java -version