From 10adf8d3e6d1125419e06e3b8906d50c2f9bc530 Mon Sep 17 00:00:00 2001 From: Elena Mokeeva Date: Tue, 25 Jul 2023 11:21:56 +0200 Subject: [PATCH] Closes #2328 - fix smoketest - wait longer --- .github/workflows/continuous-integration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index da972772b..a91e940a6 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -414,7 +414,7 @@ jobs: deploy_to_azure: runs-on: ubuntu-20.04 name: Deploy demo app to Microsoft Azure - if: github.repository == 'Taskana/taskana' && github.ref == 'refs/heads/master' && github.head_ref == '' + if: github.repository == 'Taskana/taskana' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/smoketest-fix') && github.head_ref == '' needs: [ test_frontend, test_e2e, test_backend ] steps: - name: Git checkout @@ -459,10 +459,10 @@ jobs: with: app-name: taskana package: rest/taskana-rest-spring-example-boot/target/taskana-rest-spring-example-boot.jar - - name: Wait for Azure for 15 seconds + - name: Wait for Azure for 60 seconds uses: jakejarvis/wait-action@master with: - time: '15s' + time: '60s' - name: Smoke test documentation run: ci/verify_docs_alive.sh - name: Cancel workflow