Skip to content

Commit

Permalink
Always build all build images as defined and required by releases
Browse files Browse the repository at this point in the history
... as they might get automatically deleted after some time of not being pulled and used

CMK-21154

Change-Id: I19a5cba8cae45538e52eeeb0724f6f9ea92283d6
  • Loading branch information
JonasScharpf committed Jan 14, 2025
1 parent d7dbdc8 commit 20dbd3a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion buildscripts/scripts/build-build-images.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ def main() {
]);

def versioning = load("${checkout_dir}/buildscripts/scripts/utils/versioning.groovy");
def distros = versioning.configured_or_overridden_distros("enterprise", OVERRIDE_DISTROS);

// with 2.2.0 becoming the oldest version of checkmk since the phaseout of 2.1.0
// and thereby no longer building images on daily base, only for release built images might be deleted automatically
// therefore now alway build all images
def distros = versioning.configured_or_overridden_distros("enterprise", OVERRIDE_DISTROS, "release");

def vers_tag = versioning.get_docker_tag(scm, checkout_dir);
def safe_branch_name = versioning.safe_branch_name(scm);
Expand Down Expand Up @@ -108,4 +112,5 @@ def main() {
}
}
}

return this;

0 comments on commit 20dbd3a

Please sign in to comment.