From 87583e2bbe3c10f1d6f51a11849c0dcaa772c68d Mon Sep 17 00:00:00 2001 From: Min RK Date: Fri, 25 Oct 2024 12:09:53 +0200 Subject: [PATCH] fix docker-compose invocation no longer docker-compose, it's docker compose --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e5101bb9..e2bab2fc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -88,7 +88,7 @@ jobs: export DOCKER_BUILDKIT=1 export COMPOSE_DOCKER_CLI_BUILD=1 cd ci/ssh - docker-compose up -d --build + docker compose up -d --build - name: Set up slurm if: ${{ matrix.cluster_type == 'slurm' }} @@ -96,7 +96,7 @@ jobs: export DOCKER_BUILDKIT=1 export COMPOSE_DOCKER_CLI_BUILD=1 cd ci/slurm - docker-compose up -d --build + docker compose up -d --build - name: Install Python (conda) ${{ matrix.python }} if: ${{ matrix.cluster_type == 'mpi' }}