Skip to content

Commit

Permalink
Add manual trigger to e2e-test github action
Browse files Browse the repository at this point in the history
Add a manual trigger for running the end-to-end tests with github actions.
The manual trigger takes as input a signed tag for determining which
artifacts to fetch from the build server.
  • Loading branch information
MarkusPettersson98 committed Oct 16, 2023
1 parent 7fdf960 commit 354c7a4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/desktop-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
---
name: Desktop - End-to-end testing on supported platforms
on:

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

View workflow job for this annotation

GitHub Actions / check-formatting

3:1 [truthy] truthy value should be one of [false, true]
workflow_dispatch:
inputs:
tag:
description: 'Signed tag'
required: true
schedule:
- cron: '0 0 * * *'
# TODO(markus,david): Remove before merging to main
Expand All @@ -25,6 +30,7 @@ jobs:
shell: bash -ieo pipefail {0}
env:
TEST_OSES: ${{ matrix.os }}
TAG: ${{ github.event.inputs.tag }}
run: |
./test/ci-runtests.sh ${{ matrix.os }}
Expand Down

0 comments on commit 354c7a4

Please sign in to comment.