You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tty-share/scripts/release.sh

12 lines
672 B
Bash

set -ev
VERSION=$(git describe --tags `git rev-list --tags --max-count=1` | awk '{print substr($1,2); }')
OUTDIR=out
mkdir -p ${OUTDIR} && \
GOOS=linux GOARCH=arm GOARM=6 go build -mod=vendor -ldflags "-X main.version=${VERSION}" -o ${OUTDIR}/tty-share.rpi && \
GOOS=linux go build -mod=vendor -ldflags "-X main.version=${VERSION}" -o ${OUTDIR}/tty-share.lin && \
GOOS=darwin go build -mod=vendor -ldflags "-X main.version=${VERSION}" -o ${OUTDIR}/tty-share.mac && \
zip ${OUTDIR}/tty-share.rpi.zip ${OUTDIR}/tty-share.rpi && \
zip ${OUTDIR}/tty-share.lin.zip ${OUTDIR}/tty-share.lin && \
zip ${OUTDIR}/tty-share.mac.zip ${OUTDIR}/tty-share.mac