Skip to content

temp: add push trigger #23

temp: add push trigger

temp: add push trigger #23

Workflow file for this run

name: Desktop - End-to-end testing on supported platforms
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
push:
branches:
- migrate-tests
jobs:
e2e-test:
name: Run end-to-end desktop tests (app-test-linux)
runs-on: [self-hosted, desktop-test, Linux]
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@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 }}