Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Remove Kiwi upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Johennes committed Nov 7, 2023
1 parent 90419bd commit 2432b1c
Showing 1 changed file with 0 additions and 37 deletions.
37 changes: 0 additions & 37 deletions .github/workflows/cypress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ jobs:
commit_author: ${{ steps.commit.outputs.author }}
commit_email: ${{ steps.commit.outputs.email }}
percy_enable: ${{ steps.percy.outputs.value || '0' }}
kiwi_enable: ${{ steps.kiwi.outputs.value || '1' }}
steps:
# We create the status here and then update it to success/failure in the `report` stage
# This provides an easy link to this workflow_run from the PR before Cypress is done.
Expand Down Expand Up @@ -90,14 +89,6 @@ jobs:
)
run: echo "value=1" >> $GITHUB_OUTPUT

# Only export to kiwi when it is demanded or on develop
- name: Disable Kiwi if not needed
id: kiwi
if: |
github.event.workflow_run.event == 'pull_request' &&
!contains(fromJSON(steps.prdetails.outputs.data).labels.*.name, 'X-Send-Kiwi')
run: echo "value=0" >> $GITHUB_OUTPUT

- name: Generate unique ID 💎
id: uuid
run: echo "value=sha-$GITHUB_SHA-time-$(date +"%s")" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -266,31 +257,3 @@ jobs:
context: ${{ github.workflow }} / cypress
sha: ${{ github.event.workflow_run.head_sha }}
target_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}

kiwi:
name: 🥝 Report results to kiwi (${{ matrix.crypto }} crypto)
needs:
- prepare
- tests
environment: Kiwi
runs-on: ubuntu-latest
if: ${{ needs.prepare.outputs.kiwi_enable == '1' }}
strategy:
matrix:
crypto: [legacy, rust]
steps:
- name: 📥 Download Junit report artifact
uses: actions/download-artifact@v3
with:
name: cypress-junit-${{ matrix.crypto }}-crypto
- name: 📤 Upload results to kiwi
uses: vector-im/kiwitcms-upload-action@main
with:
file-pattern: results-*.xml
kiwi-username: ${{ secrets.TCMS_USERNAME }}
kiwi-password: ${{ secrets.TCMS_PASSWORD }}
product: "Element Web"
product-version: ${{ github.event.workflow_run.head_branch }}
build-id: ${{ github.event.workflow_run.head_sha }}-${{ matrix.crypto }}-crypto
suite-name: "Cypress E2E"
summary-template: "$name"

0 comments on commit 2432b1c

Please sign in to comment.