2021-06-17 13:35:33 +00:00
|
|
|
name: Develop
|
2021-06-09 09:38:28 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [develop]
|
|
|
|
pull_request:
|
|
|
|
branches: [develop]
|
2021-06-08 11:52:32 +00:00
|
|
|
jobs:
|
2021-06-09 11:17:12 +00:00
|
|
|
end-to-end:
|
2021-06-08 11:52:32 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-06-09 11:17:49 +00:00
|
|
|
container: vectorim/element-web-ci-e2etests-env:latest
|
2021-06-08 11:52:32 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: End-to-End tests
|
|
|
|
run: ./scripts/ci/end-to-end-tests.sh
|
|
|
|
- name: Archive logs
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
test/end-to-end-tests/logs/**/*
|
|
|
|
test/end-to-end-tests/synapse/installations/consent/homeserver.log
|
|
|
|
retention-days: 14
|
2021-06-14 13:53:22 +00:00
|
|
|
- name: Download previous benchmark data
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ./cache
|
|
|
|
key: ${{ runner.os }}-benchmark
|
|
|
|
- name: Store benchmark result
|
2021-06-15 09:01:05 +00:00
|
|
|
uses: matrix-org/github-action-benchmark@jsperfentry-1
|
2021-06-08 11:52:32 +00:00
|
|
|
with:
|
2021-06-14 13:53:22 +00:00
|
|
|
tool: 'jsperformanceentry'
|
|
|
|
output-file-path: test/end-to-end-tests/performance-entries.json
|
|
|
|
fail-on-alert: false
|
2021-06-15 14:19:47 +00:00
|
|
|
comment-on-alert: false
|
2021-06-15 09:59:57 +00:00
|
|
|
# Only temporary to monitor where failures occur
|
|
|
|
alert-comment-cc-users: '@gsouquet'
|
2021-06-15 09:10:22 +00:00
|
|
|
github-token: ${{ secrets.DEPLOY_GH_PAGES }}
|
2021-06-15 09:59:57 +00:00
|
|
|
auto-push: ${{ github.ref == 'refs/heads/develop' }}
|