Add way to skip desktop build/test for downstream tests (#34322)
* Add way to skip desktop build/test for downstream tests * Iterate
This commit is contained in:
@@ -26,7 +26,13 @@ on:
|
|||||||
type: boolean
|
type: boolean
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
description: "A boolean to skip the playwright check itself while still creating the passing check. Useful when only running in Merge Queues."
|
description: "A boolean to skip everything while still creating the passing check. Useful when only running in Merge Queues."
|
||||||
|
|
||||||
|
skip-desktop:
|
||||||
|
type: boolean
|
||||||
|
required: false
|
||||||
|
default: false
|
||||||
|
description: "A boolean to skip building & testing Element Desktop."
|
||||||
|
|
||||||
matrix-js-sdk-sha:
|
matrix-js-sdk-sha:
|
||||||
type: string
|
type: string
|
||||||
@@ -237,7 +243,7 @@ jobs:
|
|||||||
name: "Prepare Element Desktop"
|
name: "Prepare Element Desktop"
|
||||||
uses: ./.github/workflows/build_desktop_prepare.yaml
|
uses: ./.github/workflows/build_desktop_prepare.yaml
|
||||||
needs: prepare
|
needs: prepare
|
||||||
if: needs.prepare.outputs.skip == 'false'
|
if: needs.prepare.outputs.skip == 'false' && inputs.skip-desktop != true
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
with:
|
with:
|
||||||
|
|||||||
Reference in New Issue
Block a user