[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:
Jon Thysell 2024-11-06 10:27:13 -08:00 коммит произвёл GitHub
Родитель 2e28f8d8f0
Коммит 69968e4bf4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
3 изменённых файлов: 9 добавлений и 3 удалений

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

@ -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: |