looping against
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
2023-12-15 18:24:39 +01:00
parent a6d2e03707
commit 72aeb85a2e

View File

@@ -7,7 +7,7 @@ local build(dir, package) = {
name: '%(dir)s-%(package)s' % { dir: dir, package: package },
platform: {
os: 'linux',
arch: 'arm64',
arch: 'arm64'
},
steps: [ {
name: '%(package)s' % { package: package },
@@ -18,9 +18,9 @@ local build(dir, package) = {
registry: 'http://cr.wks',
insecure: 'true',
tags: ['latest'],
repo: 'cr.wks/%(package)s' % { package: package },
},
}],
repo: 'cr.wks/%(package)s' % { package: package }
}
}]
};
/* [
@@ -28,7 +28,8 @@ local build(dir, package) = {
build('_CI-CD','debian-stable'),
] */
std.flattenArrays([
std.flattenArrays([ [
build('_CI-CD', pkg)
for pkg in packages
])
] ])