[0.74] Fix UseHermes to mean UseHermes (#14081)
This PR backports #14071 to 0.74. ## Description Fix CI to correctly enable/disable hermes. ### Type of Change _Erase all that don't apply._ - Bug fix (non-breaking change which fixes an issue) ### Why Accurate testing. ### What Fixed the task that set the UseHermes experimental prop. ## Screenshots N/A ## Testing Verified UseHermes set to true now. ## Changelog Should this change be included in the release notes: _no_
This commit is contained in:
Родитель
2e28f8d8f0
Коммит
69968e4bf4
|
@ -78,7 +78,10 @@ jobs:
|
|||
parameters:
|
||||
package: packages/e2e-test-app
|
||||
feature: UseHermes
|
||||
value: ${{ not(coalesce(matrix.UseChakra, false)) }}
|
||||
${{ if eq(matrix.UseChakra, true) }}:
|
||||
value: false
|
||||
${{ else }}:
|
||||
value: true
|
||||
|
||||
- template: ../templates/run-windows-with-certificates.yml
|
||||
parameters:
|
||||
|
|
|
@ -112,7 +112,10 @@ jobs:
|
|||
parameters:
|
||||
package: packages/integration-test-app
|
||||
feature: UseHermes
|
||||
value: ${{ not(coalesce(matrix.UseChakra, false))}}
|
||||
${{ if eq(matrix.UseChakra, true) }}:
|
||||
value: false
|
||||
${{ else }}:
|
||||
value: true
|
||||
|
||||
- ${{ if eq(matrix.BuildConfiguration, 'Debug') }}:
|
||||
# The build is more likely to crash after we've started other bits that
|
||||
|
|
|
@ -135,7 +135,7 @@ steps:
|
|||
parameters:
|
||||
package: ..\testcli
|
||||
feature: UseHermes
|
||||
value: ${{ not(parameters.UseChakra) }}
|
||||
value: false
|
||||
|
||||
- ${{ if or(endsWith(parameters.template, '-app'), and(endsWith(parameters.template, '-lib'), not(startsWith(parameters.template, 'old')))) }}:
|
||||
- powershell: |
|
||||
|
|
Загрузка…
Ссылка в новой задаче