RhinoReminds/build

123 lines
3.0 KiB
Bash
Executable File

#!/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
if [ ! -f "${lantern_path}/lantern.sh" ]; then
echo "Checking out lantern";
git submodule update --init "${lantern_path}";
fi
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}";
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";
echo -e "";
exit 1;
fi
###############################################################################
function task_setup {
task_begin "Checking environment";
check_command git true;
check_command mono true;
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 $?;
}
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 $?;
pwd
ls -l
task_begin "Creating Archives";
cp -ral RhinoReminds/bin/Debug RhinoReminds-Debug;
cp -ral RhinoReminds/bin/Release RhinoReminds-Release;
cp -al README.md RhinoReminds-Debug/README.md;
cp -al README.md RhinoReminds-Release/README.md;
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
}
function task_ci {
tasks_run setup;
task_begin "Environment Information";
execute uname -a;
execute git --version;
execute mono --version;
execute nuget help | head -n1;
task_end 0;
tasks_run build archive;
}
###############################################################################
tasks_run $@;