2013-06-30 08:13:01 -04:00
|
|
|
#!/bin/bash
|
2013-07-08 18:37:01 -04:00
|
|
|
#
|
|
|
|
# This script only builds the application from source.
|
2013-07-09 15:42:54 -04:00
|
|
|
set -e
|
|
|
|
|
2013-05-24 00:57:30 -04:00
|
|
|
NO_COLOR="\x1b[0m"
|
|
|
|
OK_COLOR="\x1b[32;01m"
|
|
|
|
ERROR_COLOR="\x1b[31;01m"
|
|
|
|
WARN_COLOR="\x1b[33;01m"
|
|
|
|
|
2013-06-20 01:44:02 -04:00
|
|
|
# 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 directory
|
|
|
|
cd $DIR
|
2013-05-24 00:57:30 -04:00
|
|
|
|
2013-07-08 18:37:01 -04:00
|
|
|
# Get the git commit
|
|
|
|
GIT_COMMIT=$(git rev-parse --short HEAD)
|
2013-07-09 01:24:19 -04:00
|
|
|
GIT_DIRTY=$(test -n "`git status --porcelain`" && echo "+CHANGES" || true)
|
2013-07-08 18:37:01 -04:00
|
|
|
|
2013-05-24 00:57:30 -04:00
|
|
|
# Compile the main Packer app
|
2013-06-30 08:13:01 -04:00
|
|
|
echo -e "${OK_COLOR}--> Compiling Packer${NO_COLOR}"
|
2013-07-08 18:37:01 -04:00
|
|
|
go build \
|
|
|
|
-ldflags "-X github.com/mitchellh/packer/packer.GitCommit ${GIT_COMMIT}${GIT_DIRTY}" \
|
|
|
|
-v \
|
|
|
|
-o bin/packer .
|
2013-05-24 00:57:30 -04:00
|
|
|
|
|
|
|
# Go over each plugin and build it
|
2013-06-18 17:07:36 -04:00
|
|
|
for PLUGIN in $(find ./plugin -mindepth 1 -maxdepth 1 -type d); do
|
2013-05-24 00:57:30 -04:00
|
|
|
PLUGIN_NAME=$(basename ${PLUGIN})
|
2013-06-30 08:13:01 -04:00
|
|
|
echo -e "${OK_COLOR}--> Compiling Plugin: ${PLUGIN_NAME}${NO_COLOR}"
|
2013-07-08 18:37:01 -04:00
|
|
|
go build \
|
|
|
|
-ldflags "-X github.com/mitchellh/packer/packer.GitCommit ${GIT_COMMIT}${GIT_DIRTY}" \
|
|
|
|
-v \
|
|
|
|
-o bin/packer-${PLUGIN_NAME} ${PLUGIN}
|
2013-05-24 00:57:30 -04:00
|
|
|
done
|