2014-05-18 13:18:42 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-08-03 14:33:23 +00:00
|
|
|
cd "$GOPATH/src/github.com/syncthing/syncthing/"
|
2014-05-18 13:18:42 +00:00
|
|
|
|
2014-08-06 14:15:44 +00:00
|
|
|
rm bin/
|
|
|
|
|
2014-05-18 13:18:42 +00:00
|
|
|
./build.sh test || exit 1
|
|
|
|
|
|
|
|
export GOOS=linux
|
2014-06-13 18:53:15 +00:00
|
|
|
export ENVIRONMENT=android
|
2014-05-18 13:18:42 +00:00
|
|
|
|
2014-08-06 14:15:44 +00:00
|
|
|
GOARCH=386 ./build.sh "" -tags noupgrade
|
|
|
|
mv bin/linux_386/syncthing bin/syncthing-x86
|
2014-05-18 13:18:42 +00:00
|
|
|
|
2014-08-06 14:15:44 +00:00
|
|
|
GOARCH=arm GOARM=5 ./build.sh "" -tags noupgrade
|
|
|
|
mv bin/linux_arm/syncthing bin/syncthing-armeabi
|
2014-05-18 13:24:14 +00:00
|
|
|
|
2014-08-06 14:15:44 +00:00
|
|
|
GOARCH=arm GOARM=7 ./build.sh "" -tags noupgrade
|
|
|
|
mv bin/linux_arm/syncthing bin/syncthing-armeabi-v7a
|