From 3f070385881f78cc3cca8459aef9708287b5a445 Mon Sep 17 00:00:00 2001 From: JOY <5027251+JOY@users.noreply.github.com> Date: Mon, 3 Aug 2026 19:31:31 +0700 Subject: [PATCH] ci: remove obsolete Kubernetes E2E workflow --- .github/workflows/e2e-tests.yml | 81 --------------------------------- 1 file changed, 81 deletions(-) delete mode 100644 .github/workflows/e2e-tests.yml diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml deleted file mode 100644 index 07a4c6a618..0000000000 --- a/.github/workflows/e2e-tests.yml +++ /dev/null @@ -1,81 +0,0 @@ -name: Run E2E tests k8s - -on: - workflow_dispatch: - workflow_call: - -# concurrency: -# group: ${{ github.workflow }}__${{ github.job }}__${{ github.ref }} -# cancel-in-progress: true - -permissions: - contents: read - packages: write - -jobs: - publish_image: - name: Publish Docker image - uses: './.github/workflows/publish-image.yml' - secrets: inherit - with: - # NOTE: by default the image will be built with type=ref,event=tag; so we don't need to specify it here - tags: | - type=raw,value=e2e - platforms: linux/amd64 - - deploy_e2e: - name: Deploy E2E instance - needs: publish_image - runs-on: ubuntu-latest - permissions: write-all - steps: - - name: Get Vault credentials - id: retrieve-vault-secrets - uses: hashicorp/vault-action@v2.4.1 - with: - url: https://vault.k8s.blockscout.com - role: ci-dev - path: github-jwt - method: jwt - tlsSkipVerify: false - exportToken: true - secrets: | - ci/data/dev/github token | WORKFLOW_TRIGGER_TOKEN ; - - name: Trigger deploy - uses: convictional/trigger-workflow-and-wait@v1.6.1 - with: - owner: blockscout - repo: deployment-values - github_token: ${{ env.WORKFLOW_TRIGGER_TOKEN }} - workflow_file_name: deploy_blockscout.yaml - ref: main - wait_interval: 30 - client_payload: '{ "instance": "dev", "globalEnv": "e2e"}' - - test: - name: Run tests - needs: deploy_e2e - runs-on: ubuntu-latest - permissions: write-all - steps: - - name: Get Vault credentials - id: retrieve-vault-secrets - uses: hashicorp/vault-action@v2.4.1 - with: - url: https://vault.k8s.blockscout.com - role: ci-dev - path: github-jwt - method: jwt - tlsSkipVerify: false - exportToken: true - secrets: | - ci/data/dev/github token | WORKFLOW_TRIGGER_TOKEN ; - - name: Trigger tests - uses: convictional/trigger-workflow-and-wait@v1.6.1 - with: - owner: blockscout - repo: blockscout-ci-cd - github_token: ${{ env.WORKFLOW_TRIGGER_TOKEN }} - workflow_file_name: e2e_new.yaml - ref: master - wait_interval: 30