Skip to content

Commit

Permalink
Add seperate job for e2e-testing on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusPettersson98 committed Oct 17, 2023
1 parent 80bf29f commit 2f4ae4f
Showing 1 changed file with 25 additions and 6 deletions.
31 changes: 25 additions & 6 deletions .github/workflows/desktop-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,33 @@ on:
branches:
- migrate-tests
jobs:
e2e-test:
name: Run end-to-end desktop tests (app-test-linux)
runs-on: [self-hosted, desktop-test, Linux]
e2e-test-linux:
name: Linux end-to-end desktop tests
runs-on: [self-hosted, desktop-test, Linux] # app-test-linux

Check warning on line 12 in .github/workflows/desktop-e2e.yml

View workflow job for this annotation

GitHub Actions / check-formatting

12:49 [comments] too few spaces before comment
timeout-minutes: 240
strategy:
fail-fast: false
matrix:
os: [debian11, debian12, ubuntu2004, ubuntu2204, ubuntu2304, fedora38, fedora37, fedora36, windows10, windows11]
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] # app-test-linux

Check warning on line 29 in .github/workflows/desktop-e2e.yml

View workflow job for this annotation

GitHub Actions / check-formatting

29:49 [comments] too few spaces before comment
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

Check failure on line 31 in .github/workflows/desktop-e2e.yml

View workflow job for this annotation

GitHub Actions / check-formatting

31:121 [line-length] line too long (144 > 120 characters)
timeout-minutes: 240
strategy:
fail-fast: false
matrix:
os: [windows10, windows11]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -25,8 +44,8 @@ jobs:
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]
name: macOS end-to-end desktop tests
runs-on: [self-hosted, desktop-test, macOS] # app-test-macos-arm
timeout-minutes: 240
strategy:
fail-fast: false
Expand Down

0 comments on commit 2f4ae4f

Please sign in to comment.