74 lines
2.4 KiB
Bash
Executable File
74 lines
2.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
# Only GNU getopt supports long options. OS X comes bundled with the BSD getopt
|
|
# brew install gnu-getopt to get the GNU getopt on OS X
|
|
[[ $(uname -s) == "Darwin" ]] && GNU_GETOPT="/usr/local/opt/gnu-getopt/bin/getopt" || GNU_GETOPT="getopt"
|
|
readonly GNU_GETOPT
|
|
|
|
args=$(${GNU_GETOPT} -o "" -l "output:,version:" -n "$0" -- "$@")
|
|
eval set -- "${args}"
|
|
|
|
readonly SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
|
|
bundle_file=""
|
|
version=""
|
|
|
|
while true; do
|
|
case "$1" in
|
|
--output) bundle_file="$2"; shift 2;;
|
|
--version) version="$2"; shift 2;;
|
|
--) break;;
|
|
*) echo "Unknown option $1"; exit 1;;
|
|
esac
|
|
done
|
|
|
|
if [[ -z "${version}" ]]; then
|
|
echo "--version is required"
|
|
exit 1
|
|
fi
|
|
|
|
readonly TMPDIR=${TMPDIR:-/tmp} # why is this not set on mint?
|
|
|
|
if ! $(cd "${SOURCE_DIR}" && git diff --exit-code >/dev/null); then
|
|
echo "You have local changes, stash or commit them to proceed"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ "$(node --version)" != "v20.12.2" ]]; then
|
|
echo "This script requires node 20.12.2"
|
|
exit 1
|
|
fi
|
|
|
|
box_version=$(cd "${SOURCE_DIR}" && git rev-parse "HEAD")
|
|
bundle_dir=$(mktemp -d -t box 2>/dev/null || mktemp -d box-XXXXXXXXXX --tmpdir=$TMPDIR)
|
|
[[ -z "$bundle_file" ]] && bundle_file="${TMPDIR}/box-${box_version:0:10}-${box_version:0:10}-${version}.tar.gz"
|
|
|
|
chmod "o+rx,g+rx" "${bundle_dir}" # otherwise extracted tarball director won't be readable by others/group
|
|
echo "==> Checking out code box version [${box_version}] into ${bundle_dir}"
|
|
(cd "${SOURCE_DIR}" && git archive --format=tar ${box_version} | (cd "${bundle_dir}" && tar xf -))
|
|
echo "${version}" > "${bundle_dir}/VERSION"
|
|
|
|
echo "==> Building dashboard assets"
|
|
(cd "${bundle_dir}/dashboard" && npm ci --omit=dev)
|
|
(cd "${bundle_dir}/dashboard" && ./build.sh)
|
|
rm -rf "${bundle_dir}/dashboard/node_modules"
|
|
|
|
echo "==> Building new frontend assets"
|
|
(cd "${bundle_dir}/frontend" && npm ci)
|
|
(cd "${bundle_dir}/frontend" && ./node_modules/.bin/vite build --base=/frontend/)
|
|
mv "${bundle_dir}/frontend/dist" "${bundle_dir}/dashboard/dist/frontend"
|
|
rm -rf "${bundle_dir}/frontend"
|
|
|
|
echo "==> Installing toplevel node modules"
|
|
(cd "${bundle_dir}" && npm ci --omit=dev --omit=optional --tldjs-update-rules)
|
|
|
|
echo "==> Create final tarball"
|
|
(cd "${bundle_dir}" && tar czf "${bundle_file}" .)
|
|
|
|
echo "==> Cleaning up ${bundle_dir}"
|
|
rm -rf "${bundle_dir}"
|
|
|
|
echo "==> Tarball saved at ${bundle_file}"
|