updated .drone.yml / delete Makefile
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
continuous-integration/drone Build is failing

This commit is contained in:
Paul 2022-10-30 15:04:21 +01:00
parent ebb81c3222
commit 4d0bd280fa
2 changed files with 1 additions and 19 deletions

View File

@ -63,7 +63,7 @@ steps:
environment:
GOOS: linux
GOARCH: arm64
GOOPTIONS: -mod=vendor -ldflags="-s -w"
GOOPTIONS: '-mod=vendor -ldflags="-s -w"'
SRCFILES: cmd/qrz/*.go
PROJECTNAME: qrz
when:

View File

@ -1,18 +0,0 @@
# qrz Makefile
GOCMD=go
GOBUILDCMD=${GOCMD} build
GOOPTIONS=-mod=vendor -ldflags="-s -w"
RMCMD=rm
BINNAME=qrz
SRCFILES=cmd/qrz/*.go
all: build
build:
${GOBUILDCMD} ${GOOPTIONS} ${SRCFILES}
clean:
${RMCMD} -f ${BINNAME}