remove old build.sh
This commit is contained in:
parent
853973ad46
commit
0f13d0d0fc
24
build.sh
24
build.sh
|
@ -1,24 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
set -x
|
||||
|
||||
dir="$(mktemp -d)"
|
||||
plugdir="$dir/plugins"
|
||||
githash="$(git rev-parse HEAD)"
|
||||
wd="$(pwd)"
|
||||
libc="glibc"
|
||||
|
||||
[[ -f "/lib/libc.musl-x86_64.so.1" ]] && libc="musl"
|
||||
|
||||
export GOBIN="$dir/bin"
|
||||
go build git.xeserv.us/xena/route/cmd/...
|
||||
go install git.xeserv.us/xena/route/cmd/...
|
||||
|
||||
go build -buildmode plugin -o $plugdir/autohttpagent.so git.xeserv.us/xena/route/plugins/autohttpagent
|
||||
|
||||
cd $dir
|
||||
tar czf "$wd/route-$libc-$githash.tgz" *
|
||||
cd $wd
|
||||
|
||||
rm -rf $dir
|
Loading…
Reference in New Issue