2022-06-07 10:03:25 +02:00
|
|
|
# Triggers after the layered build has finished, taking the artifact and running cypress on it
|
|
|
|
name: Cypress End to End Tests
|
|
|
|
on:
|
|
|
|
workflow_run:
|
|
|
|
workflows: [ "Element Web - Build" ]
|
|
|
|
types:
|
|
|
|
- completed
|
|
|
|
jobs:
|
2022-09-08 11:05:43 +02:00
|
|
|
prepare:
|
|
|
|
name: Prepare
|
2022-06-07 10:03:25 +02:00
|
|
|
if: github.event.workflow_run.conclusion == 'success'
|
|
|
|
runs-on: ubuntu-latest
|
2022-06-08 17:00:47 +02:00
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
issues: read
|
|
|
|
pull-requests: read
|
2022-09-07 13:48:37 +02:00
|
|
|
outputs:
|
|
|
|
uuid: ${{ steps.uuid.outputs.value }}
|
|
|
|
pr_id: ${{ steps.prdetails.outputs.pr_id }}
|
|
|
|
commit_message: ${{ steps.commit.outputs.message }}
|
|
|
|
commit_author: ${{ steps.commit.outputs.author }}
|
|
|
|
commit_email: ${{ steps.commit.outputs.email }}
|
|
|
|
percy_enable: ${{ steps.percy.outputs.value || '1' }}
|
2022-06-07 10:03:25 +02:00
|
|
|
steps:
|
|
|
|
- id: prdetails
|
|
|
|
if: github.event.workflow_run.event == 'pull_request'
|
2022-07-19 17:05:02 +02:00
|
|
|
uses: matrix-org/pr-details-action@v1.2
|
2022-06-07 10:03:25 +02:00
|
|
|
with:
|
|
|
|
owner: ${{ github.event.workflow_run.head_repository.owner.login }}
|
|
|
|
branch: ${{ github.event.workflow_run.head_branch }}
|
|
|
|
|
2022-09-07 13:48:37 +02:00
|
|
|
- name: Get commit details
|
|
|
|
id: commit
|
|
|
|
if: github.event.workflow_run.event == 'pull_request'
|
|
|
|
uses: actions/github-script@v5
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
const response = await github.rest.git.getCommit({
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
commit_sha: "${{ github.event.workflow_run.head_sha }}",
|
|
|
|
});
|
|
|
|
core.setOutput("message", response.data.message);
|
|
|
|
core.setOutput("author", response.data.author.name);
|
|
|
|
core.setOutput("email", response.data.author.email);
|
|
|
|
|
|
|
|
# Only run Percy when it is demanded or on develop
|
|
|
|
- name: Disable Percy if not needed
|
|
|
|
id: percy
|
|
|
|
if: |
|
|
|
|
github.event.workflow_run.event == 'pull_request' &&
|
|
|
|
!contains(fromJSON(steps.prdetails.outputs.data).labels.*.name, 'X-Needs-Percy')
|
2022-09-07 13:58:27 +02:00
|
|
|
run: echo "::set-output name=value::0"
|
2022-09-07 13:48:37 +02:00
|
|
|
|
|
|
|
- name: Generate unique ID 💎
|
|
|
|
id: uuid
|
|
|
|
run: echo "::set-output name=value::sha-$GITHUB_SHA-time-$(date +"%s")"
|
|
|
|
|
|
|
|
tests:
|
|
|
|
name: "Run Tests"
|
2022-09-08 11:05:43 +02:00
|
|
|
needs: prepare
|
2022-09-07 13:48:37 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
statuses: write
|
|
|
|
issues: read
|
|
|
|
pull-requests: read
|
|
|
|
environment: Cypress
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
# Run 3 instances in Parallel
|
|
|
|
runner: [1, 2, 3]
|
|
|
|
steps:
|
2022-06-07 10:03:25 +02:00
|
|
|
- uses: actions/checkout@v2
|
2022-06-08 17:00:47 +02:00
|
|
|
with:
|
|
|
|
# XXX: We're checking out untrusted code in a secure context
|
|
|
|
# We need to be careful to not trust anything this code outputs/may do
|
|
|
|
# We need to check this out to access the cypress tests which are on the head branch
|
|
|
|
repository: ${{ github.event.workflow_run.head_repository.full_name }}
|
|
|
|
ref: ${{ github.event.workflow_run.head_sha }}
|
|
|
|
persist-credentials: false
|
2022-06-07 10:03:25 +02:00
|
|
|
|
|
|
|
# There's a 'download artifact' action, but it hasn't been updated for the workflow_run action
|
|
|
|
# (https://github.com/actions/download-artifact/issues/60) so instead we get this mess:
|
|
|
|
- name: 📥 Download artifact
|
|
|
|
uses: dawidd6/action-download-artifact@v2
|
|
|
|
with:
|
|
|
|
workflow: element-build-and-test.yaml
|
|
|
|
run_id: ${{ github.event.workflow_run.id }}
|
|
|
|
name: previewbuild
|
|
|
|
path: webapp
|
|
|
|
|
|
|
|
- name: Run Cypress tests
|
2022-07-08 11:06:29 +02:00
|
|
|
uses: cypress-io/github-action@v4.1.1
|
2022-06-07 10:03:25 +02:00
|
|
|
with:
|
|
|
|
# The built-in Electron runner seems to grind to a halt trying
|
|
|
|
# to run the tests, so use chrome.
|
|
|
|
browser: chrome
|
|
|
|
start: npx serve -p 8080 webapp
|
|
|
|
wait-on: 'http://localhost:8080'
|
|
|
|
record: true
|
2022-09-07 13:48:37 +02:00
|
|
|
parallel: true
|
|
|
|
command-prefix: 'yarn percy exec --parallel --'
|
2022-09-08 11:05:43 +02:00
|
|
|
ci-build-id: ${{ needs.prepare.outputs.uuid }}
|
2022-06-07 10:03:25 +02:00
|
|
|
env:
|
|
|
|
# pass the Dashboard record key as an environment variable
|
|
|
|
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
|
2022-09-07 13:48:37 +02:00
|
|
|
|
|
|
|
# Use existing chromium rather than downloading another
|
|
|
|
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true
|
|
|
|
|
|
|
|
# pass GitHub token to allow accurately detecting a build vs a re-run build
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
# make Node's os.tmpdir() return something where we actually have permissions
|
|
|
|
TMPDIR: ${{ runner.temp }}
|
|
|
|
|
2022-06-07 10:03:25 +02:00
|
|
|
# tell Cypress more details about the context of this run
|
|
|
|
COMMIT_INFO_BRANCH: ${{ github.event.workflow_run.head_branch }}
|
|
|
|
COMMIT_INFO_SHA: ${{ github.event.workflow_run.head_sha }}
|
|
|
|
COMMIT_INFO_REMOTE: ${{ github.repositoryUrl }}
|
2022-09-08 11:05:43 +02:00
|
|
|
COMMIT_INFO_MESSAGE: ${{ needs.prepare.outputs.commit_message }}
|
|
|
|
COMMIT_INFO_AUTHOR: ${{ needs.prepare.outputs.commit_author }}
|
|
|
|
COMMIT_INFO_EMAIL: ${{ needs.prepare.outputs.commit_email }}
|
2022-06-07 10:03:25 +02:00
|
|
|
|
|
|
|
# pass the Percy token as an environment variable
|
|
|
|
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
|
2022-09-08 11:05:43 +02:00
|
|
|
PERCY_ENABLE: ${{ needs.prepare.outputs.percy_enable }}
|
2022-06-07 10:03:25 +02:00
|
|
|
PERCY_BROWSER_EXECUTABLE: /usr/bin/chromium-browser
|
|
|
|
# tell Percy more details about the context of this run
|
|
|
|
PERCY_BRANCH: ${{ github.event.workflow_run.head_branch }}
|
|
|
|
PERCY_COMMIT: ${{ github.event.workflow_run.head_sha }}
|
2022-09-08 11:05:43 +02:00
|
|
|
PERCY_PULL_REQUEST: ${{ needs.prepare.outputs.pr_id }}
|
2022-09-07 13:48:37 +02:00
|
|
|
PERCY_PARALLEL_TOTAL: ${{ strategy.job-total }}
|
2022-09-08 11:05:43 +02:00
|
|
|
PERCY_PARALLEL_NONCE: ${{ needs.prepare.outputs.uuid }}
|
2022-06-07 10:03:25 +02:00
|
|
|
|
|
|
|
- name: Upload Artifact
|
|
|
|
if: failure()
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: cypress-results
|
|
|
|
path: |
|
|
|
|
cypress/screenshots
|
|
|
|
cypress/videos
|
|
|
|
cypress/synapselogs
|
|
|
|
|
2022-09-07 13:48:37 +02:00
|
|
|
- run: mv cypress/performance/*.json cypress/performance/measurements-${{ strategy.job-index }}.json
|
2022-09-07 14:12:03 +02:00
|
|
|
continue-on-error: true
|
2022-09-07 13:48:37 +02:00
|
|
|
|
2022-06-08 17:00:47 +02:00
|
|
|
- name: Upload Benchmark
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: cypress-benchmark
|
2022-09-07 13:48:37 +02:00
|
|
|
path: cypress/performance/*
|
|
|
|
if-no-files-found: ignore
|
2022-06-08 17:00:47 +02:00
|
|
|
retention-days: 1
|
|
|
|
|
2022-09-08 11:05:43 +02:00
|
|
|
|
|
|
|
# This job cannot have a pretty name due to https://github.com/haya14busa/action-workflow_run-status/issues/158
|
|
|
|
cypress:
|
|
|
|
needs: tests
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: always()
|
|
|
|
permissions:
|
|
|
|
statuses: write
|
|
|
|
steps:
|
|
|
|
# Wire up the status check for this workflow_run action
|
|
|
|
- uses: haya14busa/action-workflow_run-status@967ed83efa565c257675ed70cfe5231f062ddd94 # v1.0.0
|
|
|
|
|
|
|
|
- name: Check status
|
|
|
|
if: ${{ needs.tests.result != 'success' }}
|
|
|
|
run: exit 1
|
|
|
|
|
2022-06-08 17:00:47 +02:00
|
|
|
store-benchmark:
|
2022-09-07 13:48:37 +02:00
|
|
|
needs: tests
|
2022-06-08 17:00:47 +02:00
|
|
|
runs-on: ubuntu-latest
|
2022-06-09 00:08:28 +02:00
|
|
|
if: |
|
|
|
|
github.event.workflow_run.event != 'pull_request' &&
|
2022-06-14 12:37:07 +02:00
|
|
|
github.event.workflow_run.head_branch == 'develop' &&
|
|
|
|
github.event.workflow_run.head_repository.full_name == github.repository
|
2022-06-08 17:00:47 +02:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
steps:
|
2022-06-09 00:08:28 +02:00
|
|
|
- uses: actions/checkout@v2
|
2022-06-14 12:37:07 +02:00
|
|
|
|
2022-06-08 17:00:47 +02:00
|
|
|
- name: Download benchmark result
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: cypress-benchmark
|
|
|
|
|
2022-09-07 13:48:37 +02:00
|
|
|
- name: Merge measurements
|
|
|
|
run: jq -s add measurements-*.json > measurements.json
|
|
|
|
|
2022-06-07 10:03:25 +02:00
|
|
|
- name: Store benchmark result
|
2022-06-10 16:42:51 +02:00
|
|
|
uses: matrix-org/github-action-benchmark@jsperfentry-6
|
2022-06-07 10:03:25 +02:00
|
|
|
with:
|
|
|
|
name: Cypress measurements
|
|
|
|
tool: 'jsperformanceentry'
|
2022-06-08 17:00:47 +02:00
|
|
|
output-file-path: measurements.json
|
2022-06-07 10:03:25 +02:00
|
|
|
# The dashboard is available at https://matrix-org.github.io/matrix-react-sdk/cypress/bench/
|
|
|
|
benchmark-data-dir-path: cypress/bench
|
|
|
|
fail-on-alert: false
|
|
|
|
comment-on-alert: false
|
2022-06-08 17:00:47 +02:00
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
2022-06-07 11:56:39 +02:00
|
|
|
auto-push: ${{ github.event.workflow_run.event != 'pull_request' }}
|