From 6bf08c833e3663cdff81e75b446325326bec500c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Mon, 18 Sep 2023 14:20:51 +0200 Subject: [PATCH] ci: Ensure we have yq installed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There was a recent change on the Kata Containers side that ended up breaking our CI here as yq is not automagically installed anymore. Signed-off-by: Fabiano FidĂȘncio --- .ci/jenkins_job_build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.ci/jenkins_job_build.sh b/.ci/jenkins_job_build.sh index f023c872a..e0ddac5b5 100755 --- a/.ci/jenkins_job_build.sh +++ b/.ci/jenkins_job_build.sh @@ -227,6 +227,8 @@ run_unit_test() { clone_katacontainers_repo pushd "${GOPATH}/src/${katacontainers_repo}" + echo "Installing yq" + sudo -E INSTALL_IN_GOPATH=false ./ci/install_yq.sh echo "Installing libseccomp library from sources" libseccomp_install_dir=$(mktemp -d -t libseccomp.XXXXXXXXXX) gperf_install_dir=$(mktemp -d -t gperf.XXXXXXXXXX)