From e93ee4fe6fa0035150c128914add64b837ffe94c Mon Sep 17 00:00:00 2001 From: Alex Collins Date: Mon, 19 Apr 2021 08:44:46 -0700 Subject: [PATCH] ci: Separate `make wait` (#5696) --- .github/workflows/ci-build.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 651ca8a72513..7c68240d1ed2 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -117,8 +117,10 @@ jobs: echo '127.0.0.1 mysql' | sudo tee -a /etc/hosts - run: make install PROFILE=${{matrix.profile}} E2E_EXECUTOR=${{matrix.containerRuntimeExecutor}} AUTH_MODE=client STATIC_FILES=false DEV_IMAGE=true LOG_LEVEL=info - run: make start PROFILE=${{matrix.profile}} E2E_EXECUTOR=${{matrix.containerRuntimeExecutor}} AUTH_MODE=client STATIC_FILES=false DEV_IMAGE=true LOG_LEVEL=info 2>&1 > /tmp/log/argo-e2e/argo.log & - - run: make executor-image wait STATIC_FILES=false DEV_IMAGE=true - timeout-minutes: 3 + - run: make executor-image STATIC_FILES=false DEV_IMAGE=true + timeout-minutes: 4 + - run: make wait + timeout-minutes: 1 - run: make ${{matrix.test}} E2E_TIMEOUT=1m STATIC_FILES=false - name: Get wait container logs if: ${{ failure() }}