48 lines
1.3 KiB
Bash
Executable File
48 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
export GO15VENDOREXPERIMENT=1
|
|
|
|
# Get the parent directory of where this script is.
|
|
SOURCE="${BASH_SOURCE[0]}"
|
|
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
|
|
DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
|
|
|
|
# Change into that dir because we expect that.
|
|
cd $DIR
|
|
|
|
# Make sure build tools are abailable.
|
|
make -f GNUMakefile tools
|
|
|
|
# Build the standalone version of the web assets for the sanity check.
|
|
pushd ui
|
|
bundle
|
|
make dist
|
|
popd
|
|
|
|
# Fixup the timestamps to match what's checked in. This will allow us to cleanly
|
|
# verify that the checked-in content is up to date without spurious diffs of the
|
|
# file mod times.
|
|
pushd pkg
|
|
cat ../command/agent/bindata_assetfs.go | ../scripts/fixup_times.sh
|
|
popd
|
|
|
|
# Regenerate the built-in web assets. If there are any diffs after doing this
|
|
# then we know something is up.
|
|
make -f GNUMakefile static-assets
|
|
if ! git diff --quiet command/agent/bindata_assetfs.go; then
|
|
echo "Checked-in web assets are out of date, build aborted"
|
|
exit 1
|
|
fi
|
|
|
|
# Now we are ready to do a clean build of everything. The "all" build will blow
|
|
# away our pkg folder so we have to regenerate the ui once more. This is probably
|
|
# for the best since we have meddled with the timestamps.
|
|
rm -rf pkg
|
|
make -f GNUMakefile all
|
|
pushd ui
|
|
make dist
|
|
popd
|
|
|
|
exit 0
|