Skip to content
Snippets Groups Projects
Commit 64cb83b4 authored by Andrej Shadura's avatar Andrej Shadura Committed by Sjoerd Simons
Browse files

Build only minimal images

parent 410f5643
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !91. Comments created here will be created in the context of that merge request.
...@@ -2,15 +2,15 @@ ...@@ -2,15 +2,15 @@
osname = 'apertis' osname = 'apertis'
release = "19.03" release = "next"
/* Determine whether to run uploads based on the prefix of the job name; in /* Determine whether to run uploads based on the prefix of the job name; in
* case of apertis we expect the official jobs under apertis-<release>/ while * case of apertis we expect the official jobs under apertis-<release>/ while
* non-official onces can be in e.g. playground/ */ * non-official onces can be in e.g. playground/ */
def production = env.JOB_NAME.startsWith("${osname}-") def production = false //env.JOB_NAME.startsWith("${osname}-")
docker_registry_name = 'docker-registry.apertis.org' docker_registry_name = 'docker-registry.apertis.org'
docker_image_name = "${docker_registry_name}/apertis/apertis-${release}-image-builder" docker_image_name = "${docker_registry_name}/apertis/apertis-19.03-image-builder"
upload_host = "archive@images.apertis.org" upload_host = "archive@images.apertis.org"
upload_root = "/srv/images/" + (production ? "public" : "test/${env.JOB_NAME}") upload_root = "/srv/images/" + (production ? "public" : "test/${env.JOB_NAME}")
...@@ -40,7 +40,7 @@ def architectures = [ ...@@ -40,7 +40,7 @@ def architectures = [
image: true, image: true,
sysroot: false, sysroot: false,
ostree: true, ostree: true,
], ],/*
target: [ target: [
args: "-t demopack:${demopack}", args: "-t demopack:${demopack}",
image: true, image: true,
...@@ -73,7 +73,7 @@ def architectures = [ ...@@ -73,7 +73,7 @@ def architectures = [
armhf: 'devroot', armhf: 'devroot',
] ]
] ]*/
] ]
], ],
arm64: [ arm64: [
...@@ -84,7 +84,7 @@ def architectures = [ ...@@ -84,7 +84,7 @@ def architectures = [
image: true, image: true,
sysroot: false, sysroot: false,
ostree: true, ostree: true,
], ],/*
target: [ target: [
args: "-t demopack:${demopack}", args: "-t demopack:${demopack}",
image: true, image: true,
...@@ -96,7 +96,7 @@ def architectures = [ ...@@ -96,7 +96,7 @@ def architectures = [
image: false, image: false,
sysroot: true, sysroot: true,
ostree: false, ostree: false,
] ]*/
] ]
], ],
armhf: [ armhf: [
...@@ -107,7 +107,7 @@ def architectures = [ ...@@ -107,7 +107,7 @@ def architectures = [
image: true, image: true,
sysroot: false, sysroot: false,
ostree: true ostree: true
], ],/*
sysroot: [ sysroot: [
args: '--scratchsize 10G', args: '--scratchsize 10G',
image: false, image: false,
...@@ -119,7 +119,7 @@ def architectures = [ ...@@ -119,7 +119,7 @@ def architectures = [
image: false, image: false,
sysroot: false, sysroot: false,
ostree: false ostree: false
] ]*/
] ]
] ]
] ]
......
...@@ -43,7 +43,6 @@ actions: ...@@ -43,7 +43,6 @@ actions:
description: "Base packages" description: "Base packages"
packages: packages:
- busybox - busybox
# - busybox-initramfs
- dbus-user-session - dbus-user-session
- action: apt - action: apt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment