2018-12-02 12:41:25 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Make sure the current directory is the location of this script to simplify matters
|
|
|
|
cd "$(dirname $(readlink -f $0))";
|
|
|
|
################
|
|
|
|
### Settings ###
|
|
|
|
################
|
|
|
|
|
|
|
|
# The name of this project
|
|
|
|
project_name="RhinoReminds";
|
|
|
|
|
|
|
|
# The path to the lantern build engine git submodule
|
|
|
|
lantern_path="./lantern-build-engine";
|
|
|
|
|
|
|
|
###
|
|
|
|
# Custom Settings
|
|
|
|
###
|
|
|
|
|
|
|
|
# Put any custom settings here.
|
|
|
|
build_output_folder="./dist";
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
# Check out the lantern git submodule if needed
|
2019-02-08 00:40:04 +00:00
|
|
|
if [ ! -f "${lantern_path}/lantern.sh" ]; then
|
2019-02-08 00:38:50 +00:00
|
|
|
echo "Checking out lantern";
|
|
|
|
git submodule update --init "${lantern_path}";
|
|
|
|
fi
|
2018-12-02 12:41:25 +00:00
|
|
|
|
|
|
|
source "${lantern_path}/lantern.sh";
|
|
|
|
|
|
|
|
if [[ "$#" -lt 1 ]]; then
|
|
|
|
echo -e "${FBLE}${project_name}${RS} build script";
|
|
|
|
echo -e " by Starbeamrainbowlabs";
|
|
|
|
echo -e "${LC}Powered by the lantern build engine, v${version}${RS}";
|
|
|
|
echo -e "";
|
|
|
|
echo -e "${CSECTION}Usage${RS}";
|
|
|
|
echo -e " ./build ${CTOKEN}{action}${RS} ${CTOKEN}{action}${RS} ${CTOKEN}{action}${RS} ...";
|
|
|
|
echo -e "";
|
|
|
|
echo -e "${CSECTION}Available actions${RS}";
|
2019-02-12 19:43:40 +00:00
|
|
|
echo -e " ${CACTION}setup${RS} - Perform initial setup";
|
|
|
|
echo -e " ${CACTION}build${RS} - Restore nuget packages & compile project";
|
|
|
|
echo -e " ${CACTION}ci${RS} - Perform CI tasks";
|
|
|
|
echo -e " ${CACTION}archive${RS} - Construct binary archives";
|
2018-12-02 12:41:25 +00:00
|
|
|
echo -e "";
|
|
|
|
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
function task_setup {
|
|
|
|
task_begin "Checking environment";
|
|
|
|
|
|
|
|
check_command git true;
|
2019-02-08 00:27:49 +00:00
|
|
|
check_command mono true;
|
2018-12-02 12:41:25 +00:00
|
|
|
check_command msbuild true;
|
|
|
|
check_command nuget true;
|
|
|
|
|
|
|
|
task_end 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
function task_build {
|
|
|
|
task_begin "Restoring nuget packages";
|
|
|
|
nuget restore;
|
|
|
|
task_end $?;
|
|
|
|
|
|
|
|
task_begin "Building";
|
|
|
|
execute msbuild;
|
|
|
|
task_end $?;
|
|
|
|
}
|
|
|
|
|
2019-02-12 19:43:40 +00:00
|
|
|
function task_archive {
|
|
|
|
task_begin "Deleting extra files";
|
|
|
|
find RhinoReminds/bin -iname "*.xml" -delete;
|
|
|
|
task_end $?;
|
|
|
|
|
|
|
|
task_begin "Setting permissions";
|
|
|
|
find RhinoReminds/bin -type f -print0 | xargs -0 -P4 chmod -x;
|
|
|
|
find RhinoReminds/bin -type f -iname "*.exe" -print0 | xargs -0 -P4 chmod +x;
|
|
|
|
task_end $?;
|
|
|
|
|
2019-02-12 19:51:59 +00:00
|
|
|
pwd
|
|
|
|
ls -l
|
|
|
|
|
2019-02-12 19:43:40 +00:00
|
|
|
task_begin "Creating Archives";
|
|
|
|
cp -ral RhinoReminds/bin/Debug RhinoReminds-Debug;
|
|
|
|
cp -ral RhinoReminds/bin/Release RhinoReminds-Release;
|
2019-02-12 19:50:16 +00:00
|
|
|
cp -al README.md RhinoReminds-Debug/README.md;
|
|
|
|
cp -al README.md RhinoReminds-Release/README.md;
|
2019-02-12 19:43:40 +00:00
|
|
|
|
|
|
|
tar -caf RhinoReminds-Debug.tar.gz RhinoReminds-Debug;
|
|
|
|
tar -caf RhinoReminds-Release.tar.gz RhinoReminds-Release;
|
|
|
|
|
|
|
|
rm -r RhinoReminds-{Debug,Release};
|
|
|
|
task_end $?;
|
|
|
|
|
|
|
|
if [ "${ARCHIVE}" != "" ]; then
|
|
|
|
task_begin "CI environment detected - moving archives to specified CI archive directory";
|
|
|
|
|
|
|
|
mv RhinoReminds-{Debug,Release}.tar.gz "${ARCHIVE}";
|
|
|
|
|
|
|
|
task_end $?;
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2018-12-02 12:41:25 +00:00
|
|
|
function task_ci {
|
|
|
|
tasks_run setup;
|
|
|
|
|
|
|
|
task_begin "Environment Information";
|
|
|
|
execute uname -a;
|
2019-02-08 00:27:49 +00:00
|
|
|
execute git --version;
|
|
|
|
execute mono --version;
|
2018-12-02 12:41:25 +00:00
|
|
|
execute nuget help | head -n1;
|
|
|
|
task_end 0;
|
|
|
|
|
2019-02-12 19:44:37 +00:00
|
|
|
tasks_run build archive;
|
2018-12-02 12:41:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
tasks_run $@;
|