-
Notifications
You must be signed in to change notification settings - Fork 358
38 lines (36 loc) · 1.09 KB
/
desktop-e2e.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
name: Desktop - End-to-end testing on supported platforms
on:
schedule:
- cron: '0 0 * * *'
# TODO(markus,david): Remove before merging to main
push:
brances:
- migrate-tests
workflow_dispatch:
jobs:
instrumented-tests:
name: Run end-to-end desktop tests
runs-on: [self-hosted, desktop-test]
timeout-minutes: 240
strategy:
fail-fast: false
matrix:
os: [debian11, debian12, ubuntu2004, ubuntu2204, ubuntu2304, fedora38, fedora37, fedora36, windows10, windows11]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run instrumented test script
shell: bash -ieo pipefail {0}
env:
TEST_OSES: ${{ matrix.os }}
run: |
./test/ci-runtests.sh ${{ matrix.os }}
- name: Upload end-to-end test report (${{ matrix.os }})
uses: actions/upload-artifact@v3
if: always()
with:
name: ${{ matrix.os }}-end-to-end-test-report
path: ./test/.ci-logs/os/${{ matrix.os }}.log
if-no-files-found: ignore
retention-days: 2