From 54cf8a3e0ee23330c171c416f9854a8c361648b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eric=20M=C3=BCller?= <mueller@kip.uni-heidelberg.de> Date: Fri, 17 Dec 2021 10:14:24 +0100 Subject: [PATCH] Fix(ASIC) Fail build early if yum can't install Change-Id: I0897b0a9b89e7611f6df415f7f0a869f42a7c5a4 --- .ci/asic_create_recipe.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/asic_create_recipe.sh b/.ci/asic_create_recipe.sh index 8808e7f3..bbf588e4 100755 --- a/.ci/asic_create_recipe.sh +++ b/.ci/asic_create_recipe.sh @@ -62,6 +62,9 @@ From: ${DOCKER_BASE_IMAGE} # ECM: disable http caching echo "http_caching=none" >> /etc/yum.conf + # ECM: enable strict mode to fail when packages are not found (or other installation problems appear) + echo "skip_missing_names_on_install=0" >> /etc/yum.conf + # Apparently, upon building the CentOS docker images it has been decided that # (for space-saving reasons) exactly one locale (en_US.utf8) is installed. # We don't care about the little extra space and user experience benefits from -- GitLab