Add seperate job for e2e-testing on Windows #25
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Desktop - End-to-end testing on supported platforms | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
push: | |
branches: | |
- migrate-tests | |
jobs: | |
e2e-test-linux: | |
name: Linux end-to-end desktop tests | |
runs-on: [self-hosted, desktop-test, Linux] | |
timeout-minutes: 240 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [debian11, debian12, ubuntu2004, ubuntu2204, ubuntu2304, fedora38, fedora37, fedora36] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Run end-to-end tests | |
shell: bash -ieo pipefail {0} | |
env: | |
TAG: ${{ github.event.inputs.tag }} | |
run: | | |
./test/ci-runtests.sh ${{ matrix.os }} | |
e2e-test-windows: | |
name: Windows end-to-end desktop tests | |
runs-on: [self-hosted, desktop-test, Linux] | |
needs: e2e-test-linux | |
if: ${{ always() }} # https://docs.github.com/en/actions/using-jobs/using-jobs-in-a-workflow#example-not-requiring-successful-dependent-jobs | |
timeout-minutes: 240 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows10, windows11] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Run end-to-end tests | |
shell: bash -ieo pipefail {0} | |
env: | |
TAG: ${{ github.event.inputs.tag }} | |
run: | | |
./test/ci-runtests.sh ${{ matrix.os }} | |
e2e-test-macos: | |
name: Run end-to-end desktop tests (app-test-macos-arm) | |
runs-on: [self-hosted, desktop-test, macOS] | |
timeout-minutes: 240 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-14, macos-13, macos-12] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Run end-to-end tests | |
shell: bash -ieo pipefail {0} | |
env: | |
TAG: ${{ github.event.inputs.tag }} | |
run: | | |
./test/ci-runtests.sh ${{ matrix.os }} |