Build script - Build for x86 and amd64
This commit is contained in:
parent
97f0cf48bb
commit
ffe98f702b
1 changed files with 10 additions and 7 deletions
17
build.sh
17
build.sh
|
@ -2,10 +2,13 @@
|
|||
|
||||
set -e
|
||||
cd "$(dirname $0)"
|
||||
mkdir -p bin
|
||||
for d in $(find cmd -mindepth 1 -maxdepth 1 -type d); do
|
||||
cd $d
|
||||
xn="$(basename "$d")"
|
||||
go build
|
||||
/bin/mv "$xn" ../../bin
|
||||
done
|
||||
for arch in 386 amd64; do
|
||||
mkdir -p bin/$arch
|
||||
for d in $(find cmd -mindepth 1 -maxdepth 1 -type d); do
|
||||
pushd $d >/dev/null
|
||||
xn="$(basename "$d")"
|
||||
GOARCH=$arch go build
|
||||
/bin/mv "$xn" ../../bin/$arch
|
||||
popd >/dev/null
|
||||
done
|
||||
done
|
Loading…
Reference in a new issue