From e94e06174eb8bac865ac6cf7609645d6ed613c07 Mon Sep 17 00:00:00 2001 From: Atanas Atanasov Date: Wed, 13 Nov 2024 16:29:53 +0200 Subject: [PATCH] stop the smoke test container from docker task Signed-off-by: Atanas Atanasov --- .github/workflows/smoke-test.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/smoke-test.yaml b/.github/workflows/smoke-test.yaml index 246769310..955d18e59 100644 --- a/.github/workflows/smoke-test.yaml +++ b/.github/workflows/smoke-test.yaml @@ -78,16 +78,16 @@ jobs: restore-keys: | ${{ runner.os }}-gradle- - - name: Build And Run Smoke Tests Container + - name: Start the Smoke Test Container run: ${{ env.GRADLE_EXEC }} startDockerContainerSmokeTest - - name: Run Smoke Test + - name: Run Smoke Tests working-directory: server/src/test/resources/ run: ./smoke-test.sh - - name: Stop Smoke Tests Container + - name: Stop Smoke Test Container if: always() - run: docker compose -p block-node stop + run: ${{ env.GRADLE_EXEC }} stopDockerContainer - name: Print Server Container Logs if: always()