From a533c7e1149f05f4e6d02781b058fced058b8fa0 Mon Sep 17 00:00:00 2001 From: Stefan Hoffmann Date: Sun, 3 Jan 2021 11:57:29 +0100 Subject: [PATCH] testing with platform in pipeline --- .drone.jsonnet | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.drone.jsonnet b/.drone.jsonnet index 9b31ade..c57652f 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -1,6 +1,10 @@ local pipeline(os, arch) = { kind: "pipeline", name: "build " + os + "/" + arch, + platform: { + "arch": arch, + "os": os + }, steps: [{ name: "compile " + os + "/" + arch, image: "golang:1.15.6-alpine3.12",