ci: replace concat with format strings
continuous-integration/drone/push Build is passing Details

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2022-10-27 17:56:00 +02:00
parent c658b6b796
commit dd542b9f18
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
1 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
local testing(version, arch) = {
kind: 'pipeline',
type: 'docker',
name: version + '-' + arch,
name: '%s-%s' % [version, arch],
platform: {
arch: arch,
},
@ -17,7 +17,7 @@ local testing(version, arch) = {
},
{
name: 'cache',
image: 'golang:' + version,
image: 'golang:%s' % [version],
commands: [
'go mod tidy',
],
@ -33,7 +33,7 @@ local testing(version, arch) = {
},
{
name: 'test',
image: 'golang:' + version,
image: 'golang:%s' % [version],
commands: [
'make test-ci',
],
@ -49,7 +49,7 @@ local testing(version, arch) = {
},
{
name: 'fuzz',
image: 'golang:' + version,
image: 'golang:%s' % [version],
commands: [
'make fuzz-ci',
],