mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* Remove the tmp folder inside the smart-build script. Print the deps file to see the current dependencies * Use the alpha of the latest lib published on npm
81 lines
1.4 KiB
Bash
Executable File
81 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
eval BRANCH_NAME=""
|
|
|
|
show_help() {
|
|
echo "Usage: smart-build.sh"
|
|
echo ""
|
|
echo "-b branch name"
|
|
}
|
|
|
|
branch_name(){
|
|
BRANCH_NAME=$1
|
|
}
|
|
|
|
while [[ $1 == -* ]]; do
|
|
case "$1" in
|
|
-b) branch_name $2; shift 2;;
|
|
-*) echo "invalid option: $1" 1>&2; show_help; exit 0;;
|
|
esac
|
|
done
|
|
|
|
if [[ "$BRANCH_NAME" == "" ]]
|
|
then
|
|
echo "The branch name is mandatory"
|
|
exit 0
|
|
fi
|
|
|
|
#reset the tmp folder
|
|
rm -rf tmp
|
|
affected="$(./scripts/affected-libs.sh -b "$BRANCH_NAME")"
|
|
echo $affected
|
|
libs=(`echo $affected | sed 's/^$/\n/g'`)
|
|
|
|
#core
|
|
for i in "${libs[@]}"
|
|
do
|
|
if [ "$i" == "core$" ] ; then
|
|
./scripts/build-core.sh || exit 1;
|
|
fi
|
|
done
|
|
|
|
#content-services
|
|
for i in "${libs[@]}"
|
|
do
|
|
if [ "$i" == "content-services$" ] ; then
|
|
./scripts/build-content-services.sh || exit 1;
|
|
fi
|
|
done
|
|
|
|
#process-services
|
|
for i in "${libs[@]}"
|
|
do
|
|
if [ "$i" == "process-services$" ] ; then
|
|
./scripts/build-process-services.sh || exit 1;
|
|
fi
|
|
done
|
|
|
|
#process-services-cloud
|
|
for i in "${libs[@]}"
|
|
do
|
|
if [ "$i" == "process-services-cloud$" ] ; then
|
|
./scripts/build-process-services-cloud.sh || exit 1;
|
|
fi
|
|
done
|
|
|
|
#insights
|
|
for i in "${libs[@]}"
|
|
do
|
|
if [ "$i" == "insights$" ] ; then
|
|
./scripts/build-insights.sh || exit 1;
|
|
fi
|
|
done
|
|
|
|
#extensions
|
|
for i in "${libs[@]}"
|
|
do
|
|
if [ "$i" == "extensions$" ] ; then
|
|
./scripts/build-extensions.sh || exit 1;
|
|
fi
|
|
done
|