platform part
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Some checks reported errors
continuous-integration/drone/push Build encountered an error
This commit is contained in:
@@ -4,9 +4,15 @@ local packages = ['debian-stable','debian-testing','debian-stable-build-essentia
|
|||||||
local build(dir, package) = {
|
local build(dir, package) = {
|
||||||
kind: 'pipeline',
|
kind: 'pipeline',
|
||||||
type: 'docker',
|
type: 'docker',
|
||||||
name: 'build-%(dir)s-%(package)s' % { dir: dir, package: package },
|
name: '%(dir)s-%(package)s' % { dir: dir, package: package },
|
||||||
|
platform: [
|
||||||
|
{
|
||||||
|
os: 'linux',
|
||||||
|
arch: 'arm64'
|
||||||
|
}
|
||||||
|
]
|
||||||
steps: [ {
|
steps: [ {
|
||||||
name: 'build-%(package)s' % { package: package },
|
name: '%(package)s' % { package: package },
|
||||||
image: 'plugin/docker',
|
image: 'plugin/docker',
|
||||||
settings: {
|
settings: {
|
||||||
dockerfile: '%(dir)s/%(package)s/Dockerfile' % { dir: dir, package: package },
|
dockerfile: '%(dir)s/%(package)s/Dockerfile' % { dir: dir, package: package },
|
||||||
@@ -21,4 +27,4 @@ local build(dir, package) = {
|
|||||||
[
|
[
|
||||||
#build('_CI-CD',pkg) for pkg in packages;
|
#build('_CI-CD',pkg) for pkg in packages;
|
||||||
build('_CI-CD','debian-stable'),
|
build('_CI-CD','debian-stable'),
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user