Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 1 addition & 38 deletions .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
38 changes: 1 addition & 37 deletions .github/workflows/release-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down