Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/configurations/test_workflows/testAndroid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
- test_android:
requires:
- build_android
- test_e2e_android
# - test_e2e_android
- test_android_template:
requires:
- build_npm_package
Expand Down
3 changes: 1 addition & 2 deletions .circleci/configurations/test_workflows/testE2E.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@
jobs:
- test_e2e_ios:
ruby_version: "2.7.7"
# This is not stable
# - test_e2e_android
- test_e2e_android
4 changes: 2 additions & 2 deletions .circleci/configurations/test_workflows/testIOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
- build_hermesc_linux
- build_hermes_macos
- build_hermesc_windows
- test_e2e_ios:
ruby_version: "2.7.7"
# - test_e2e_ios:
# ruby_version: "2.7.7"
- test_ios_template:
requires:
- build_npm_package
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-bots/dangerfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,4 +182,4 @@ async function handleStatuses() {
}
}

handleStatuses();
// handleStatuses();
14 changes: 7 additions & 7 deletions scripts/circleci/pipeline_selection.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ const mapping = [
name: 'RUN_ANDROID',
filterFN: name => name.indexOf('ReactAndroid/') > -1,
},
{
name: 'RUN_E2E',
filterFN: name => name.indexOf('rn-tester-e2e/') > -1,
},
// {
// name: 'RUN_E2E',
// filterFN: name => name.indexOf('rn-tester-e2e/') > -1,
// },
{
name: 'RUN_JS',
filterFN: name => isJSChange(name),
Expand Down Expand Up @@ -154,7 +154,7 @@ async function _computeAndSavePipelineParameters(pipelineType, outputPath) {
run_ios: pipelineType === 'RUN_IOS',
run_android: pipelineType === 'RUN_ANDROID',
run_js: pipelineType === 'RUN_JS',
run_e2e: pipelineType === 'RUN_E2E' || pipelineType === 'RUN_JS',
// run_e2e: pipelineType === 'RUN_E2E' || pipelineType === 'RUN_JS',
};

const stringifiedParams = JSON.stringify(params, null, 2);
Expand All @@ -180,8 +180,8 @@ function createConfigs(inputPath, outputPath, configFile) {
const testConfigs = {
run_ios: ['testIOS.yml'],
run_android: ['testAndroid.yml'],
run_e2e: ['testE2E.yml'],
run_all: ['testE2E.yml', 'testJS.yml', 'testAll.yml'],
// run_e2e: ['testE2E.yml'],
run_all: [/*'testE2E.yml',*/ 'testJS.yml', 'testAll.yml'],
run_js: ['testJS.yml'],
};

Expand Down