From a3e094b1ca43b173b357306a027b8009be764055 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Fri, 23 Sep 2022 17:27:17 +0200 Subject: [PATCH 1/5] test-e2e: Attemp to bisect the CI failure --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index cea4e52d62a..0c68053a723 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -570,6 +570,7 @@ jobs: command: | git clone --depth=1 https://github.com/facebook/react-native cd react-native + git checkout bc5cb7cd7933da707c02ff0dd993c607ba7d40b3 yarn install echo "console.log('Using Hermes: ' + (global.HermesInternal != null));" >> packages/rn-tester/js/RNTesterApp.android.js - android/start-emulator-and-run-tests: From 67032bdd738371bb62e52dddd55d24e0b07f9a5d Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Fri, 23 Sep 2022 17:29:06 +0200 Subject: [PATCH 2/5] pull before checking out --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0c68053a723..c34dfbdba94 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -570,6 +570,7 @@ jobs: command: | git clone --depth=1 https://github.com/facebook/react-native cd react-native + git pull git checkout bc5cb7cd7933da707c02ff0dd993c607ba7d40b3 yarn install echo "console.log('Using Hermes: ' + (global.HermesInternal != null));" >> packages/rn-tester/js/RNTesterApp.android.js From 78fbbb07a342002c8caaac856017c3cdd7438590 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Fri, 23 Sep 2022 18:48:46 +0200 Subject: [PATCH 3/5] Do not --depth=1 when cloning --- .circleci/config.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c34dfbdba94..bbb09762c7b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -568,9 +568,8 @@ jobs: - run: name: Prepare RNTester command: | - git clone --depth=1 https://github.com/facebook/react-native + git clone https://github.com/facebook/react-native cd react-native - git pull git checkout bc5cb7cd7933da707c02ff0dd993c607ba7d40b3 yarn install echo "console.log('Using Hermes: ' + (global.HermesInternal != null));" >> packages/rn-tester/js/RNTesterApp.android.js From 7ebe7cc89cbf4d799d011b2a9587c4db1a3da041 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Mon, 26 Sep 2022 18:16:16 +0200 Subject: [PATCH 4/5] Bisect around f63d4e7debbe056570f2568f9cf424c5364f7c53 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bbb09762c7b..29d493dc377 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -570,7 +570,7 @@ jobs: command: | git clone https://github.com/facebook/react-native cd react-native - git checkout bc5cb7cd7933da707c02ff0dd993c607ba7d40b3 + git checkout f63d4e7debbe056570f2568f9cf424c5364f7c53 yarn install echo "console.log('Using Hermes: ' + (global.HermesInternal != null));" >> packages/rn-tester/js/RNTesterApp.android.js - android/start-emulator-and-run-tests: From 241ac1c7b8d0d3b1098de29a5eb204800c986b5d Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Mon, 26 Sep 2022 18:41:58 +0200 Subject: [PATCH 5/5] Bisect around 67bc498b24f6b548eafecd844c849156d91c5f79 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 29d493dc377..861bfb54d13 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -570,7 +570,7 @@ jobs: command: | git clone https://github.com/facebook/react-native cd react-native - git checkout f63d4e7debbe056570f2568f9cf424c5364f7c53 + git checkout 67bc498b24f6b548eafecd844c849156d91c5f79 yarn install echo "console.log('Using Hermes: ' + (global.HermesInternal != null));" >> packages/rn-tester/js/RNTesterApp.android.js - android/start-emulator-and-run-tests: