From 567bcf26b51b15027bf8cd75b873eebb9ad8127c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20S=C3=B3jko?= Date: Fri, 15 Mar 2024 11:20:38 +0100 Subject: [PATCH] tmp: disable e2e and deployment to ecs --- .../workflows/common-server-application.yml | 36 +++++++++---------- .github/workflows/publish.yml | 34 +++++++++--------- 2 files changed, 36 insertions(+), 34 deletions(-) diff --git a/.github/workflows/common-server-application.yml b/.github/workflows/common-server-application.yml index 5aede9c5f..e4bba70f5 100644 --- a/.github/workflows/common-server-application.yml +++ b/.github/workflows/common-server-application.yml @@ -42,26 +42,26 @@ jobs: workspace_name: ${{ inputs.workspace_name }} secrets: inherit - deploy-web: - if: ${{ inputs.deploy_web }} + # deploy-web: + # if: ${{ inputs.deploy_web }} - needs: publish + # needs: publish - name: Deploy Web - uses: standardnotes/server/.github/workflows/common-deploy.yml@main - with: - service_name: ${{ inputs.service_name }} - docker_image: ${{ inputs.service_name }}:${{ github.sha }} - secrets: inherit + # name: Deploy Web + # uses: standardnotes/server/.github/workflows/common-deploy.yml@main + # with: + # service_name: ${{ inputs.service_name }} + # docker_image: ${{ inputs.service_name }}:${{ github.sha }} + # secrets: inherit - deploy-worker: - if: ${{ inputs.deploy_worker }} + # deploy-worker: + # if: ${{ inputs.deploy_worker }} - needs: publish + # needs: publish - name: Deploy Worker - uses: standardnotes/server/.github/workflows/common-deploy.yml@main - with: - service_name: ${{ inputs.service_name }}-worker - docker_image: ${{ inputs.service_name }}:${{ github.sha }} - secrets: inherit + # name: Deploy Worker + # uses: standardnotes/server/.github/workflows/common-deploy.yml@main + # with: + # service_name: ${{ inputs.service_name }}-worker + # docker_image: ${{ inputs.service_name }}:${{ github.sha }} + # secrets: inherit diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c65c7807a..ec9075ee2 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -98,30 +98,32 @@ jobs: - name: Test run: yarn test - e2e-base: - needs: build - name: E2E Base Suite - uses: standardnotes/server/.github/workflows/common-e2e.yml@main - with: - snjs_image_tag: 'latest' - suite: 'base' + # e2e-base: + # needs: build + # name: E2E Base Suite + # uses: standardnotes/server/.github/workflows/common-e2e.yml@main + # with: + # snjs_image_tag: 'latest' + # suite: 'base' - e2e-vaults: - needs: build - name: E2E Vaults Suite - uses: standardnotes/server/.github/workflows/common-e2e.yml@main - with: - snjs_image_tag: 'latest' - suite: 'vaults' + # e2e-vaults: + # needs: build + # name: E2E Vaults Suite + # uses: standardnotes/server/.github/workflows/common-e2e.yml@main + # with: + # snjs_image_tag: 'latest' + # suite: 'vaults' publish-self-hosting: - needs: [ test, lint, e2e-base, e2e-vaults ] + # needs: [ test, lint, e2e-base, e2e-vaults ] + needs: [ test, lint ] name: Publish Self Hosting Docker Image uses: standardnotes/server/.github/workflows/common-self-hosting.yml@main secrets: inherit publish-services: - needs: [ test, lint, e2e-base, e2e-vaults ] + # needs: [ test, lint, e2e-base, e2e-vaults ] + needs: [ test, lint ] runs-on: ubuntu-latest