looping against
Some checks reported errors
continuous-integration/drone/push Build encountered an error

This commit is contained in:
2023-12-15 18:23:11 +01:00
parent da199f3fe0
commit a6d2e03707

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,12 +18,17 @@ 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 },
},
}],
};
[
/* [
#build('_CI-CD',pkg) for pkg in packages;
build('_CI-CD','debian-stable'),
]
] */
std.flattenArrays([
build('_CI-CD', pkg)
for pkg in packages
])