From be1967a9c55f6e3de19db6b7e7ea7f45d4f232c5 Mon Sep 17 00:00:00 2001 From: Zhu Zhanyan Date: Sun, 19 Apr 2020 21:35:24 +0800 Subject: [PATCH] Remove docker-compose test due to db race condition issue. This issue is described in issue #23 --- .github/workflows/ci-pipeline.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 6bd9747..91c180e 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -32,32 +32,6 @@ jobs: name: containers path: build/containers - ## testing pipeline - # tests containers run using the docker compose setup without exiting - test-docker-compose-up: - runs-on: ubuntu-18.04 - needs: [ build-containers ] - steps: - - uses: actions/checkout@v2 - - uses: actions/download-artifact@v1 - with: - name: containers - path: build/containers - - # tests containers run by running the docker-compose - # stack and making sure none of them exit unexpectly - - name: "Test Docker Compose up" - env: - DOTENV: "${{ secrets.DOTENV }}" - run: | - make load - echo $DOTENV >.env - # required to run cms-db first as a workaround for issue #23 - # the database has to complete its initdb operation before the stack - # would work properly. - docker-compose run -d cms-db && sleep 60 && docker-compose down - timeout --preserve-status -sTERM 120s docker-compose up --abort-on-container-exit --no-build - ## helm chart # lints helm chart lint-helm-chart: