ci: use our own build script

This commit is contained in:
Toby 2022-11-02 18:00:37 -07:00
parent 4a08e5226b
commit 10282e0ffd
5 changed files with 69 additions and 92 deletions

View file

@ -11,17 +11,12 @@ ENV GOPROXY ${GOPROXY}
COPY . /go/src/github.com/hynetwork/hysteria
WORKDIR /go/src/github.com/hynetwork/hysteria/cmd
WORKDIR /go/src/github.com/hynetwork/hysteria
RUN set -ex \
&& apk add git build-base \
&& export VERSION=$(git describe --tags) \
&& export COMMIT=$(git rev-parse HEAD) \
&& export TIMESTAMP=$(date "+%F %T") \
&& go build -trimpath -o /go/bin/hysteria -ldflags \
"-w -s -X 'main.appVersion=${VERSION}' \
-X 'main.appCommit=${COMMIT}' \
-X 'main.appDate=${TIMESTAMP}'"
&& ./build.sh \
&& mv ./build/hysteria-* /go/bin/hysteria
# multi-stage builds to create the final image
FROM alpine AS dist