ci: replace concat with format strings
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
parent
c658b6b796
commit
dd542b9f18
1 changed files with 4 additions and 4 deletions
|
@ -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',
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue