cloudinit/build

19 lines
524 B
Plaintext
Raw Normal View History

2014-03-05 04:36:05 +04:00
#!/bin/bash -e
ORG_PATH="github.com/vtolstov"
REPO_PATH="${ORG_PATH}/cloudinit"
2014-05-10 12:42:57 +04: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-05 04:36:05 +04:00
export GOBIN=${PWD}/bin
export GOPATH=${PWD}/third_party
export CGO_ENABLED=0
2014-03-05 04:36:05 +04: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