diff --git a/.circleci/config.yml b/.circleci/config.yml index 6a383ac8b8..2b5d7af6cb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,7 +34,7 @@ executors: reactnativeios: <<: *defaults macos: - xcode: "10.2.1" + xcode: "10.3.0" # ------------------------- # COMMANDS @@ -109,13 +109,13 @@ commands: steps: - restore_cache: keys: - - v1-brew + - v2-brew - steps: << parameters.steps >> - save_cache: paths: - /usr/local/Homebrew - ~/Library/Caches/Homebrew - key: v1-brew + key: v2-brew with_pods_cache_span: parameters: diff --git a/RNTester/RNTesterIntegrationTests/RNTesterSnapshotTests.m b/RNTester/RNTesterIntegrationTests/RNTesterSnapshotTests.m index c51a903eef..42ae6a1816 100644 --- a/RNTester/RNTesterIntegrationTests/RNTesterSnapshotTests.m +++ b/RNTester/RNTesterIntegrationTests/RNTesterSnapshotTests.m @@ -38,9 +38,8 @@ RCT_TEST(LayoutExample) RCT_TEST(ScrollViewExample) RCT_TEST(TextExample) #if !TARGET_OS_TV -// No switch or slider available on tvOS +// No switch available on tvOS RCT_TEST(SwitchExample) -RCT_TEST(SliderExample) #endif - (void)testZZZNotInRecordMode diff --git a/scripts/run-ci-e2e-tests.js b/scripts/run-ci-e2e-tests.js index 56b4bdc644..30baa24ad0 100644 --- a/scripts/run-ci-e2e-tests.js +++ b/scripts/run-ci-e2e-tests.js @@ -212,12 +212,12 @@ try { if ( tryExecNTimes( () => { - let destination = 'platform=iOS Simulator,name=iPhone 6s,OS=12.2'; + let destination = 'platform=iOS Simulator,name=iPhone 6s,OS=12.4'; let sdk = 'iphonesimulator'; let scheme = 'HelloWorld'; if (argv.tvos) { - destination = 'platform=tvOS Simulator,name=Apple TV,OS=11.4'; + destination = 'platform=tvOS Simulator,name=Apple TV,OS=12.4'; sdk = 'appletvsimulator'; scheme = 'HelloWorld-tvOS'; }