From e16f99333fd9dd9607c1afb7a1524f03ae5d2e71 Mon Sep 17 00:00:00 2001 From: ArtemHoruzhenko Date: Mon, 1 Dec 2025 14:10:58 +0200 Subject: [PATCH] RI-000: remove e2e --- .github/workflows/release-prod.yml | 39 +---------------------------- .github/workflows/release-stage.yml | 38 +--------------------------- 2 files changed, 2 insertions(+), 75 deletions(-) diff --git a/.github/workflows/release-prod.yml b/.github/workflows/release-prod.yml index dd6fd3155e..b60dd5d77c 100644 --- a/.github/workflows/release-prod.yml +++ b/.github/workflows/release-prod.yml @@ -24,36 +24,6 @@ jobs: environment: "production" target: "all" - e2e-docker-tests-smoke: - name: "E2E: Smoke (Docker)" - needs: builds-prod - uses: ./.github/workflows/tests-e2e-docker-smoke.yml - secrets: inherit - with: - debug: ${{ inputs.debug || false }} - - e2e-docker-tests-critical-path: - name: "E2E: Critical Path (Docker)" - needs: builds-prod - uses: ./.github/workflows/tests-e2e-docker-critical-path.yml - secrets: inherit - with: - debug: ${{ inputs.debug || false }} - - e2e-docker-tests-regression: - name: "E2E: Regression (Docker)" - needs: builds-prod - uses: ./.github/workflows/tests-e2e-docker-regression.yml - secrets: inherit - with: - debug: ${{ inputs.debug || false }} - - e2e-appimage-tests: - name: E2E AppImage tests - needs: builds-prod - uses: ./.github/workflows/tests-e2e-appimage.yml - secrets: inherit - virustotal-prod: name: Virustotal uses: ./.github/workflows/virustotal.yml @@ -78,14 +48,7 @@ jobs: # Remove artifacts from github actions remove-artifacts: name: Remove artifacts - needs: - [ - aws-upload-prod, - e2e-docker-tests-smoke, - e2e-docker-tests-critical-path, - e2e-docker-tests-regression, - e2e-appimage-tests, - ] + needs: [aws-upload-prod] if: always() runs-on: ubuntu-latest diff --git a/.github/workflows/release-stage.yml b/.github/workflows/release-stage.yml index ca78319d61..d8801b0e56 100644 --- a/.github/workflows/release-stage.yml +++ b/.github/workflows/release-stage.yml @@ -31,46 +31,10 @@ jobs: with: pre-release: true - e2e-docker-tests-smoke: - name: "E2E: Smoke (Docker)" - needs: builds - uses: ./.github/workflows/tests-e2e-docker-smoke.yml - secrets: inherit - with: - debug: ${{ inputs.debug || false }} - - e2e-docker-tests-critical-path: - name: "E2E: Critical Path (Docker)" - needs: builds - uses: ./.github/workflows/tests-e2e-docker-critical-path.yml - secrets: inherit - with: - debug: ${{ inputs.debug || false }} - - e2e-docker-tests-regression: - name: "E2E: Regression (Docker)" - needs: builds - uses: ./.github/workflows/tests-e2e-docker-regression.yml - secrets: inherit - with: - debug: ${{ inputs.debug || false }} - - e2e-appimage-tests: - needs: builds - uses: ./.github/workflows/tests-e2e-appimage.yml - secrets: inherit - # Remove artifacts from github actions remove-artifacts: name: Remove artifacts - needs: - [ - aws, - e2e-docker-tests-smoke, - e2e-docker-tests-critical-path, - e2e-docker-tests-regression, - e2e-appimage-tests, - ] + needs: [aws] if: always() runs-on: ubuntu-latest