Skip to content

Commit e192e52

Browse files
committed
ESP32: lets configure esp32 qemu jobs to run manually
There has been some instances where we need to run unit tests in the CI and for that we have to enable/disable this workflow. So to save that round trip we should make it run manually.
1 parent 47254d5 commit e192e52

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/qemu.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ on:
2121
- 'v*-branch'
2222
pull_request:
2323
merge_group:
24+
workflow_dispatch:
2425

2526
concurrency:
2627
group: ${{ github.ref }}-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.number) || (github.event_name == 'workflow_dispatch' && github.run_number) || github.sha }}
@@ -38,7 +39,7 @@ jobs:
3839
BUILD_TYPE: esp32-qemu
3940

4041
runs-on: ubuntu-latest
41-
if: github.actor != 'restyled-io[bot]' && github.repository_owner == 'espressif'
42+
if: github.actor != 'restyled-io[bot]' && (github.repository_owner == 'espressif' || github.event_name == 'workflow_dispatch')
4243

4344
container:
4445
image: ghcr.io/project-chip/chip-build-esp32-qemu:119

0 commit comments

Comments
 (0)