forked from hashicorp/packer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
84 additions
and
143 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
#!/bin/bash | ||
# | ||
# This script compiles Packer for various platforms (specified by the | ||
# PACKER_OS and PACKER_ARCH environmental variables). | ||
set -e | ||
|
||
NO_COLOR="\x1b[0m" | ||
OK_COLOR="\x1b[32;01m" | ||
ERROR_COLOR="\x1b[31;01m" | ||
WARN_COLOR="\x1b[33;01m" | ||
|
||
# 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 | ||
|
||
# Get the git commit | ||
GIT_COMMIT=$(git rev-parse HEAD) | ||
GIT_DIRTY=$(test -n "`git status --porcelain`" && echo "+CHANGES" || true) | ||
|
||
# Determine the arch/os combos we're building for | ||
XC_ARCH=${XC_ARCH:-"386 amd64 arm"} | ||
XC_OS=${XC_OS:-linux darwin windows freebsd openbsd} | ||
|
||
# Make sure that if we're killed, we kill all our subprocseses | ||
trap "kill 0" SIGINT SIGTERM EXIT | ||
|
||
echo -e "${OK_COLOR}==> Installing dependencies to speed up builds...${NO_COLOR}" | ||
go get ./... | ||
|
||
echo -e "${OK_COLOR}==> Beginning compile...${NO_COLOR}" | ||
rm -rf pkg/ | ||
gox \ | ||
-os="${XC_OS}" \ | ||
-arch="${XC_ARCH}" \ | ||
-ldflags "-X github.com/mitchellh/packer/packer.GitCommit ${GIT_COMMIT}${GIT_DIRTY}" \ | ||
-output "pkg/{{.OS}}_{{.Arch}}/packer-{{.Dir}}" \ | ||
./... | ||
|
||
# Make sure "packer-packer" is renamed properly | ||
for PLATFORM in $(find ./pkg -mindepth 1 -maxdepth 1 -type d); do | ||
set +e | ||
mv ${PLATFORM}/packer-packer ${PLATFORM}/packer 2>/dev/null | ||
mv ${PLATFORM}/packer-packer.exe ${PLATFORM}/packer.exe 2>/dev/null | ||
set -e | ||
done | ||
|
||
# Reset signal trapping to avoid "Terminated: 15" at the end | ||
trap - SIGINT SIGTERM EXIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
# | ||
# This script only builds the application from source. | ||
set -e | ||
|
||
NO_COLOR="\x1b[0m" | ||
OK_COLOR="\x1b[32;01m" | ||
ERROR_COLOR="\x1b[31;01m" | ||
WARN_COLOR="\x1b[33;01m" | ||
|
||
# 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 | ||
|
||
# Compile the thing | ||
export XC_ARCH=$(go env GOARCH) | ||
export XC_OS=$(go env GOOS) | ||
./scripts/compile.sh | ||
|
||
# Move all the compiled things to the PATH | ||
cp pkg/${XC_OS}_${XC_ARCH}/* ${GOPATH}/bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters