mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
eaec4f7fda
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/39566 Fixes running the `build.sh` script for `react-native-codegen` when on [EdenFS](https://github.com/facebook/sapling). This would previously fail due a filesystem "unable to copy extended attributes" error. This only affects development within the React Native monorepo. Practically, this equates to a workflow improvement for Meta engineers when creating `RNTester` builds. NOTE: **This is temporary**. The change from `mv` to `cp -R` makes this script more expensive, which will make Android builds via Gradle take slightly longer. I have a WIP cleanup planned which will 1/ move `react-native-codegen` to the [shared monorepo build setup](https://github.com/facebook/react-native/pull/38718), and 2/ drop this step entirely from the Android Gradle build. Changelog: [Internal] Reviewed By: christophpurrer Differential Revision: D49468891 fbshipit-source-id: 25d5db81798cf8ab150a135174a45f4d4c2cb5a2
77 lines
2.2 KiB
Bash
Executable File
77 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
# This script assumes yarn is already installed.
|
|
|
|
THIS_DIR=$(cd -P "$(dirname "$(realpath "${BASH_SOURCE[0]}" || echo "${BASH_SOURCE[0]}")")" && pwd)
|
|
|
|
set -e
|
|
set -u
|
|
|
|
CODEGEN_DIR="$THIS_DIR/../.."
|
|
|
|
rm -rf "${CODEGEN_DIR:?}/lib" "${CODEGEN_DIR:?}/node_modules"
|
|
|
|
# Fallback to npm if yarn is not available
|
|
if [ -x "$(command -v yarn)" ]; then
|
|
YARN_OR_NPM=$(command -v yarn)
|
|
else
|
|
YARN_OR_NPM=$(command -v npm)
|
|
fi
|
|
YARN_BINARY="${YARN_BINARY:-$YARN_OR_NPM}"
|
|
|
|
# mv command to use when copying files into the working directory
|
|
EDEN_SAFE_MV="mv"
|
|
|
|
if [ -x "$(command -v eden)" ]; then
|
|
pushd "$THIS_DIR"
|
|
|
|
# Detect if we are in an EdenFS checkout
|
|
if [[ "$OSTYPE" == "darwin"* ]] && eden info; then
|
|
EDEN_SAFE_MV="cp -R -X"
|
|
fi
|
|
|
|
popd >/dev/null
|
|
fi
|
|
|
|
if [[ ${FBSOURCE_ENV:-0} -eq 1 ]]; then
|
|
# Custom FB-specific setup
|
|
pushd "$CODEGEN_DIR" >/dev/null
|
|
|
|
"$YARN_BINARY" install 2> >(grep -v '^warning' 1>&2)
|
|
# Note: Within FBSOURCE_ENV, this has to explicitly run build.
|
|
"$YARN_BINARY" run build
|
|
|
|
popd >/dev/null
|
|
|
|
else
|
|
# Run yarn install in a separate tmp dir to avoid conflict with the rest of the repo.
|
|
# Note: OSS-only.
|
|
TMP_DIR=$(mktemp -d)
|
|
|
|
# On Windows this script gets run by a seprate Git Bash instance, which cannot perform the copy
|
|
# due to file locks created by the host process. Need to exclude .lock files while copying.
|
|
# Using in-memory tar operation because piping `find` and `grep` doesn't preserve folder structure
|
|
# during recursive copying, and `rsync` is not installed by default in Git Bash.
|
|
# As an added benefit, blob copy is faster.
|
|
if [ "$OSTYPE" = "msys" ] || [ "$OSTYPE" = "cygwin" ]; then
|
|
tar cf - --exclude='*.lock' "$CODEGEN_DIR" | (cd "$TMP_DIR" && tar xvf - );
|
|
else
|
|
cp -R "$CODEGEN_DIR/." "$TMP_DIR";
|
|
fi
|
|
|
|
pushd "$TMP_DIR" >/dev/null
|
|
|
|
# Note: this automatically runs build as well.
|
|
"$YARN_BINARY" install 2> >(grep -v '^warning' 1>&2)
|
|
|
|
popd >/dev/null
|
|
|
|
$EDEN_SAFE_MV "$TMP_DIR/lib" "$CODEGEN_DIR"
|
|
$EDEN_SAFE_MV "$TMP_DIR/node_modules" "$CODEGEN_DIR"
|
|
rm -rf "$TMP_DIR"
|
|
fi
|