cloudinit/build

19 lines
524 B
Plaintext
Raw Normal View History

2014-03-04 16:36:05 -08:00
#!/bin/bash -e
ORG_PATH="github.com/vtolstov"
REPO_PATH="${ORG_PATH}/cloudinit"
2014-05-10 01:42:57 -07:00
if [ ! -h gopath/src/${REPO_PATH} ]; then
mkdir -p gopath/src/${ORG_PATH}
ln -s ../../../.. gopath/src/${REPO_PATH} || echo "exit 255"
fi
2014-03-04 16:36:05 -08:00
export GOBIN=${PWD}/bin
export GOPATH=${PWD}/third_party
export CGO_ENABLED=0
2014-03-04 16:36:05 -08:00
for os in linux freebsd; do
GOOS=${os} go build -a -installsuffix cgo -o bin/cloudinit-linux-x86_64 ${REPO_PATH}
GOOS=${os} GOARCH=386 go build -a -installsuffix cgo -o bin/cloudinit-linux-x86_32 ${REPO_PATH}
done