Partially back out #24506, fixing iOS e2e tests (#24788)

Summary:
The iOS End-to-End tests started failing with the updates made to the iOS template's Podfile in 261197d857. Undoing these gets our CI iOS e2e test step back to green.

[iOS] [Removed] - Revert auto-linking related changes to the iOS template Podfile
Pull Request resolved: https://github.com/facebook/react-native/pull/24788

Differential Revision: D15317895

Pulled By: cpojer

fbshipit-source-id: a1f3b84b39c6d341740f742d83fd05a1ab841184
This commit is contained in:
Héctor Ramos 2019-05-13 07:31:01 -07:00 коммит произвёл Facebook Github Bot
Родитель 0245fd713e
Коммит da7d3dfc7d
2 изменённых файлов: 12 добавлений и 4 удалений

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

@ -499,12 +499,22 @@ jobs:
- run:
name: Run JavaScript End-to-End Tests
command: node ./scripts/run-ci-e2e-tests.js --js --retries 3
command: |
# free up port 8081 for the packager before running tests
set +eo pipefail
lsof -i tcp:8081 | awk 'NR!=1 {print $2}' | xargs kill
set -eo pipefail
node ./scripts/run-ci-e2e-tests.js --js --retries 3
when: always
- run:
name: Run iOS End-to-End Tests
command: node ./scripts/run-ci-e2e-tests.js --ios --retries 3;
command: |
# free up port 8081 for the packager before running tests
set +eo pipefail
lsof -i tcp:8081 | awk 'NR!=1 {print $2}' | xargs kill
set -eo pipefail
node ./scripts/run-ci-e2e-tests.js --ios --retries 3;
when: always

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

@ -1,5 +1,4 @@
platform :ios, '9.0'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
target 'HelloWorld' do
# Pods for HelloWorld
@ -33,7 +32,6 @@ target 'HelloWorld' do
# Pods for testing
end
use_native_modules!
end
target 'HelloWorld-tvOS' do