Skip to content

Update runner image build script #18

Update runner image build script

Update runner image build script #18

Workflow file for this run

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:
inputs:
tag:
description: 'Signed tag'
required: true
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@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 }}
- 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