Unblock CI by disabling integration testing for `test_ios_unit_hermes` (#33128)

Summary:
I'm disabling the integration test step for `test_ios_unit_hermes` as they're currently failign wiht a
`SIGSEGV` introduced by 9010bfe457

The change is legit, but is introducing an ABI incompatibility that is making the app crash at runtime.
We can re-enable them as soon as Hermes 0.12.0 is released.

## Changelog

[Internal] - Unblock CI by disabling integration testing for `test_ios_unit_hermes`

Pull Request resolved: https://github.com/facebook/react-native/pull/33128

Test Plan: Will wait for a Circle CI green before merging

Reviewed By: neildhar

Differential Revision: D34285751

Pulled By: cortinico

fbshipit-source-id: 40f8e3d1b41fc4d5f0459003dcd19d651aefbeb7
This commit is contained in:
Nicola Corti 2022-02-16 15:17:32 -08:00 коммит произвёл Facebook GitHub Bot
Родитель b2e625a517
Коммит 062c1f7277
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -966,7 +966,10 @@ workflows:
- test_ios: - test_ios:
name: test_ios_unit_hermes name: test_ios_unit_hermes
use_hermes: true use_hermes: true
run_unit_tests: true # TODO(ncor, neildhar) Integration tests for iOS + Hermes are currently
# disabled due to an ABI incompatibility introduced by D33830544.
# They can be re-enabled as soon as Hermes 0.12.0 is released.
run_unit_tests: false
filters: filters:
branches: branches:
ignore: gh-pages ignore: gh-pages