Fix UseHermes to mean UseHermes (#14071)

## 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:
Jon Thysell 2024-11-04 13:14:13 -08:00 коммит произвёл GitHub
Родитель 068a72b465
Коммит 3191a4a5ab
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
3 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@ -72,7 +72,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:

Просмотреть файл

@ -86,7 +86,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: |