Co-authored-by: Ivan Akulov <mail@iamakulov.com> Co-authored-by: Satish Gandham <hello@satishgandham.com> Co-authored-by: Ivan Akulov <iamakulov@outlook.com> Co-authored-by: Aishwarya UR <aishwarya@appsmith.com> Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com> Co-authored-by: somangshu <somangshu.goswami1508@gmail.com>
31 lines
808 B
Bash
Executable File
31 lines
808 B
Bash
Executable File
#!/bin/bash
|
||
|
||
set -e
|
||
|
||
GIT_SHA=$(eval git rev-parse HEAD)
|
||
echo $GIT_SHA
|
||
echo "Sentry Auth Token: $SENTRY_AUTH_TOKEN"
|
||
|
||
if [ "$REACT_APP_AIRGAP_ENABLED" == "true" ]; then
|
||
echo "Building for airgapped Appsmith instances"
|
||
OUTPUT_PATH=build_airgap
|
||
else
|
||
echo "Building for non-airgapped Appsmith instances"
|
||
OUTPUT_PATH=build
|
||
fi
|
||
|
||
# build cra app
|
||
export REACT_APP_SENTRY_RELEASE=$GIT_SHA
|
||
export REACT_APP_CLIENT_LOG_LEVEL=ERROR
|
||
# Disable ESLint – we have a separate CI step to run it
|
||
export DISABLE_ESLINT_PLUGIN=true
|
||
craco --max-old-space-size=7168 build --config craco.build.config.js
|
||
|
||
if [ "$GITHUB_REPOSITORY" == "appsmithorg/appsmith-ee" ]; then
|
||
echo "Deleting sourcemaps for EE"
|
||
rm ./$OUTPUT_PATH/static/js/*.js.map
|
||
rm ./$OUTPUT_PATH/static/js/*.js.map.gz
|
||
fi
|
||
|
||
echo "build finished"
|