only apps
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2024-09-13 09:58:44 +02:00
70 changed files with 38 additions and 182 deletions

View File

@@ -35,7 +35,7 @@ local build(dir, package) = {
steps: [
{
name: 'git log',
image: 'cr.wks/debian-stable',
image: 'cr.wks/debian-testing',
commands: [ 'bin/find_changes.sh' ]
},
# [
@@ -48,4 +48,30 @@ local build(dir, package) = {
# ]
],
},
#{
# kind: 'pipeline',
# type: 'docker',
# name: '_CI-CD',
# platform: {
# os: 'linux',
# arch: 'arm64',
# },
# steps: [
# build('_CI-CD', pkg)
# for pkg in packages
# ],
# },
{
kind: 'pipeline',
type: 'docker',
name: 'apps',
platform: {
os: 'linux',
arch: 'arm64',
},
steps: [
build('apps', app)
for app in apps
],
},
]