this should do, maybe

This commit is contained in:
Nils Stinnesbeck 2021-01-02 23:20:26 +01:00
parent 384cd4f483
commit d7458d902e

View File

@ -1,9 +1,7 @@
local pipeline(arch, os) = {
kind: "pipeline",
type: "docker",
name: "build go",
name: "build" + os + "/" + arch,
steps: [{
name: "build " + os + "/" + arch,
name: "compile " + os + "/" + arch,
image: "golang:1.15.6-alpine3.12",
environment: {
"GOOS": os,
@ -11,7 +9,7 @@ local pipeline(arch, os) = {
"CGO_ENABLED": "0",
},
commands: [
'go build -ldflags "-X main.version=${DRONE_TAG##v}" -o release/' + os + "/" + arch + "/ubnt-freifunk-map-api .",
'go build -ldflags "-s -w -X main.version=${DRONE_TAG##v}" -trimpath -o release/' + os + "/" + arch + "/ubnt-freifunk-map-api .",
"tar -cvzf release/ubnt-freifunk-map-api_"+ os + "/" + arch + ".tar.gz -C release/" + os + "/" + arch + " ubnt-freifunk-map-api"
],
},