Skip to content

Commit bf45a68

Browse files
authored
Remove legacy Paper renderer shim cleanup from artifact commit workflow (#36297)
## Summary PR #36285 deleted the Paper (legacy) renderer, including the shim file `scripts/rollup/shims/react-native/ReactNative.js`. However, the `runtime_commit_artifacts` workflow still tries to `rm` this file after moving build artifacts into `compiled-rn/`. Since the file no longer exists in the build output, `rm` (without `-f`) fails and kills the entire step. This has caused **every run of the Commit Artifacts workflow to fail since #36285 landed on April 16**, blocking both `builds/facebook-www` and `builds/facebook-fbsource` branches from receiving new build artifacts. This in turn blocks DiffTrain from syncing React changes into Meta's internal monorepo.
1 parent 77319e2 commit bf45a68

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

.github/workflows/runtime_commit_artifacts.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,6 @@ jobs:
167167
# Delete the OSS renderers, these are sync'd to RN separately.
168168
RENDERER_FOLDER=$BASE_FOLDER/react-native-github/Libraries/Renderer/implementations/
169169
rm $RENDERER_FOLDER/ReactFabric-{dev,prod,profiling}.js
170-
171-
# Delete the legacy renderer shim, this is not sync'd and will get deleted in the future.
172-
SHIM_FOLDER=$BASE_FOLDER/react-native-github/Libraries/Renderer/shims/
173-
rm $SHIM_FOLDER/ReactNative.js
174170
175171
# Copy eslint-plugin-react-hooks
176172
# NOTE: This is different from www, here we include the full package

0 commit comments

Comments
 (0)