summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2023-10-20 11:05:56 +0200
committerDavid Lönnhager <david.l@mullvad.net>2023-10-20 11:05:56 +0200
commit4319388dbbd08fd8fe90a5d6ed5b8fb460b86e60 (patch)
tree968c5a84fd59f4b559d369132a49140fb160d5fe /.github
parentea4002dba40c67184a40c57e8852ac022498f65c (diff)
parent774df1f8cc531c7047818a4d656f456a92f36382 (diff)
downloadmullvadvpn-4319388dbbd08fd8fe90a5d6ed5b8fb460b86e60.tar.xz
mullvadvpn-4319388dbbd08fd8fe90a5d6ed5b8fb460b86e60.zip
Merge branch 'migrate-tests'
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/desktop-e2e.yml51
1 files changed, 51 insertions, 0 deletions
diff --git a/.github/workflows/desktop-e2e.yml b/.github/workflows/desktop-e2e.yml
new file mode 100644
index 0000000000..b28e70232d
--- /dev/null
+++ b/.github/workflows/desktop-e2e.yml
@@ -0,0 +1,51 @@
+name: Desktop - End-to-end tests
+on:
+ schedule:
+ - cron: '0 0 * * *'
+ workflow_dispatch:
+jobs:
+ e2e-test-linux:
+ name: Linux end-to-end tests
+ runs-on: [self-hosted, desktop-test, Linux] # app-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}
+ run: |
+ ./test/ci-runtests.sh ${{ matrix.os }}
+ e2e-test-windows:
+ name: Windows end-to-end tests
+ runs-on: [self-hosted, desktop-test, Linux] # app-test-linux
+ 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}
+ run: |
+ ./test/ci-runtests.sh ${{ matrix.os }}
+ e2e-test-macos:
+ name: macOS end-to-end tests
+ runs-on: [self-hosted, desktop-test, macOS] # app-test-macos-arm
+ 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}
+ run: |
+ ./test/ci-runtests.sh ${{ matrix.os }}