ubnt-freifunk-map-api/.drone.jsonnet

26 lines
732 B
Plaintext
Raw Normal View History

2021-01-02 22:01:44 +00:00
local pipeline(arch, os) = {
kind: "pipeline",
2021-01-02 22:10:13 +00:00
name: "build",
2021-01-02 22:01:44 +00:00
steps: [{
image: "golang:1.15.6-alpine3.12",
environment: {
"GOOS": os,
"GOARCH": arch,
"CGO_ENABLED": "0",
},
commands: [
'go build -ldflags "-X main.version=${DRONE_TAG##v}" -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"
],
},
],
};
[
pipeline("linux", "amd64"),
2021-01-02 22:12:21 +00:00
]
// pipeline("linux", "arm64"),
// pipeline("darwin", "amd64"),
// pipeline("darwin", "arm64"),
// pipeline("windows", "amd64"),
// pipeline("windows", "arm64"),
// ]