2019-03-09 16:07:44 +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="micro-lanterns";
|
|
|
|
|
|
|
|
# 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 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}main${RS} - Build the slide deck";
|
2019-03-09 16:46:03 +00:00
|
|
|
echo -e " ${CACTION}main-watch${RS} - Build the slide deck automatically when something changes";
|
2019-03-09 16:07:44 +00:00
|
|
|
echo -e " ${CACTION}slides${RS} - Build the slides HTML";
|
|
|
|
echo -e " ${CACTION}js-css${RS} - Build the javascript / css";
|
|
|
|
echo -e " ${CACTION}dev-server${RS} - Start a development server";
|
|
|
|
echo -e " ${CACTION}dev-server-stop${RS} - Stop the currently running development server";
|
|
|
|
echo -e "";
|
|
|
|
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
task_setup() {
|
2019-03-11 16:52:26 +00:00
|
|
|
stage_begin "Setting up";
|
2019-03-09 16:07:44 +00:00
|
|
|
|
|
|
|
check_command git true;
|
|
|
|
check_command node true;
|
|
|
|
check_command npm true;
|
|
|
|
|
2019-03-11 16:52:26 +00:00
|
|
|
task_begin "Creating build output directory";
|
2019-03-09 16:07:44 +00:00
|
|
|
mkdir -p "${build_output_folder}";
|
2019-03-11 16:52:26 +00:00
|
|
|
subtask_end $? "Error: Failed to create build output directory at ${HC}${build_output_folder}${RS}";
|
2019-03-09 16:07:44 +00:00
|
|
|
|
2019-03-11 16:52:26 +00:00
|
|
|
task_begin "Initialising submodules";
|
2019-03-09 16:07:44 +00:00
|
|
|
git submodule update --init;
|
2019-03-11 16:52:26 +00:00
|
|
|
task_end $? "Error: Failed to initialise submodules";
|
2019-03-09 16:07:44 +00:00
|
|
|
|
2019-03-11 16:52:26 +00:00
|
|
|
task_begin "Installing dependencies";
|
|
|
|
npm install;
|
|
|
|
task_end $? "Error: Failed to install dependencies";
|
|
|
|
|
|
|
|
stage_end 0;
|
2019-03-09 16:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# ██████ ███████ ██ ██ ███████ ███████ ██████ ██ ██ ███████ ██████
|
|
|
|
# ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
|
|
# ██ ██ █████ ██ ██ █████ ███████ █████ ██████ ██ ██ █████ ██████
|
|
|
|
# ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
|
|
# ██████ ███████ ████ ███████ ███████ ██ ██ ████ ███████ ██ ██
|
|
|
|
task_dev-server() {
|
|
|
|
task_begin "Starting development server";
|
2019-03-09 16:46:03 +00:00
|
|
|
php -S [::1]:50678 -t "${build_output_folder}" &
|
2019-03-09 16:07:44 +00:00
|
|
|
exit_code=$?;
|
|
|
|
echo $! >/tmp/micro-lantern-dev-server.pid;
|
|
|
|
task_end $?; # Should be 0 unless php died for some reason
|
|
|
|
sleep 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
task_dev-server-stop() {
|
|
|
|
task_begin "Stopping development server";
|
|
|
|
|
|
|
|
kill "$(cat /tmp/micro-lantern-dev-server.pid)";
|
|
|
|
rm /tmp/micro-lantern-dev-server.pid;
|
|
|
|
|
|
|
|
task_end $?;
|
|
|
|
}
|
|
|
|
|
2019-03-11 16:50:10 +00:00
|
|
|
task_main-watch() {
|
2019-03-09 16:46:03 +00:00
|
|
|
set_title "Build Watcher";
|
|
|
|
|
|
|
|
echo -e "Watching for changes.";
|
|
|
|
while :; do # : = infinite loop
|
|
|
|
# Wait for an update
|
|
|
|
# inotifywait's non-0 exit code forces an exit for some reason :-/
|
|
|
|
inotifywait -qr --event modify --format '%:e %f' index.html images css js;
|
|
|
|
|
|
|
|
# Rebuild the client code - spawn a sub-process to avoid the hard exit
|
|
|
|
# This still doesn't work though, which is *really* annoying
|
|
|
|
stage_begin "Rebuilding";
|
|
|
|
./build main;
|
|
|
|
stage_end 0;
|
|
|
|
done
|
|
|
|
}
|
2019-03-09 16:07:44 +00:00
|
|
|
|
|
|
|
task_main() {
|
2019-03-09 16:46:03 +00:00
|
|
|
tasks_run js-css;
|
2019-03-09 16:07:44 +00:00
|
|
|
|
|
|
|
task_begin "Copying html";
|
|
|
|
cp index.html "${build_output_folder}";
|
|
|
|
task_end $?;
|
|
|
|
|
2019-03-09 16:46:03 +00:00
|
|
|
task_begin "Copying images";
|
|
|
|
cp -r images/ "${build_output_folder}";
|
2019-03-09 16:07:44 +00:00
|
|
|
task_end $?;
|
|
|
|
}
|
|
|
|
|
|
|
|
task_js-css() {
|
|
|
|
task_begin "Packaging Javascript & CSS";
|
|
|
|
node_modules/rollup/bin/rollup --sourcemap --config rollup.config.js;
|
|
|
|
task_end $? "Error: rollup packing failed!";
|
|
|
|
}
|
|
|
|
|
2019-03-11 16:50:10 +00:00
|
|
|
task_ci() {
|
|
|
|
task_begin "Environment Information";
|
|
|
|
execute git --version;
|
|
|
|
execute node --version;
|
|
|
|
execute npm --version;
|
|
|
|
task_end $?;
|
|
|
|
|
|
|
|
tasks_run setup main archive;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
task_archive() {
|
|
|
|
task_begin "Archiving";
|
|
|
|
mv "dist/" "Linux101/";
|
|
|
|
tar cafv "${ARCHIVE}/slides.tar.bz2" "Linux101/";
|
|
|
|
mv "Linux101/" "dist/";
|
|
|
|
task_end $?;
|
|
|
|
}
|
|
|
|
|
2019-03-09 16:07:44 +00:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
tasks_run $@;
|