awl/.drone.jsonnet
Sam Therapy 8aacf6661b
All checks were successful
continuous-integration/drone Build is passing
change YML to JSONNET
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-07-13 01:09:10 +02:00

22 lines
No EOL
362 B
Text

local pipeline(version, arch) = {
kind: "pipeline",
name: version + "-" + arch ,
platform: {
arch: arch
},
steps: [
{
name: "test",
image: "golang:" + version,
commands: [
"go test ./..."
]
}
]
};
// logawl uses generics so 1.18 is the minimum
[
pipeline("1.18", "amd64"),
pipeline("1.18", "arm64"),
]