Skip to content

Commit 37cb84d

Browse files
cipolleschifacebook-github-bot
authored andcommittedJan 31, 2024··
Fix template jobs, broken for moved file (#42767)
Summary: Some jobs are failing because we moved a file and we did not update the CI with the new path ## Changelog: [Internal] - Update path to relocated file in CI Pull Request resolved: #42767 Test Plan: CircleCI is green (a part from test_android, fixed by another PR) Reviewed By: huntie, dmytrorykun Differential Revision: D53266042 Pulled By: cipolleschi fbshipit-source-id: 7e611b96c204cdbbf794a731fe0db58cb31657fb
1 parent 1239345 commit 37cb84d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎.circleci/configurations/jobs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ jobs:
359359
name: Create Android template project
360360
command: |
361361
REPO_ROOT=$(pwd)
362-
node ./scripts/update-template-package.js "{\"react-native\":\"file:$REPO_ROOT/build/$(cat build/react-native-package-version)\"}"
362+
node ./scripts/releases/update-template-package.js "{\"react-native\":\"file:$REPO_ROOT/build/$(cat build/react-native-package-version)\"}"
363363
node ./scripts/template/initialize.js --reactNativeRootPath $REPO_ROOT --templateName $PROJECT_NAME --templateConfigPath "$REPO_ROOT/packages/react-native" --directory "/tmp/$PROJECT_NAME"
364364
- with_gradle_cache:
365365
steps:
@@ -457,7 +457,7 @@ jobs:
457457
REPO_ROOT=$(pwd)
458458
PACKAGE=$(cat build/react-native-package-version)
459459
PATH_TO_PACKAGE="$REPO_ROOT/build/$PACKAGE"
460-
node ./scripts/update-template-package.js "{\"react-native\":\"file:$PATH_TO_PACKAGE\"}"
460+
node ./scripts/releases/update-template-package.js "{\"react-native\":\"file:$PATH_TO_PACKAGE\"}"
461461
node ./scripts/template/initialize.js --reactNativeRootPath $REPO_ROOT --templateName $PROJECT_NAME --templateConfigPath "$REPO_ROOT/packages/react-native" --directory "/tmp/$PROJECT_NAME"
462462
- with_xcodebuild_cache:
463463
podfile_lock_path: << parameters.podfile_lock_path >>

0 commit comments

Comments
 (0)
Please sign in to comment.