From df20b139b9a967b0c00c704f545121303c2d41f0 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 7 Sep 2023 14:31:47 -0400 Subject: [PATCH] ci/jenkins: `Drop runAsUser: 0` This provokes a virtiofs bug. --- .cci.jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.cci.jenkinsfile b/.cci.jenkinsfile index 305f12a5cc..32cf38c11c 100644 --- a/.cci.jenkinsfile +++ b/.cci.jenkinsfile @@ -26,7 +26,7 @@ codestyle: { def nhosts = 4 def mem = (nhosts * 1536) + 512 -cosaPod(runAsUser: 0, memory: "${mem}Mi", cpu: "${nhosts}") { +cosaPod(memory: "${mem}Mi", cpu: "${nhosts}") { stage("Unit Tests") { checkout scm unstash 'rpms' @@ -51,11 +51,11 @@ cosaPod(runAsUser: 0, memory: "${mem}Mi", cpu: "${nhosts}") { """) } stage("Install Deps") { - shwrap("ci/install-test-deps.sh") + shwrap("sudo ci/install-test-deps.sh") } stage("Kola") { // TODO upstream this into coreos-ci-lib - shwrap("make -C tests/kolainst install") + shwrap("sudo make -C tests/kolainst install") kola(cosaDir: "${env.WORKSPACE}", extraArgs: "ext.rpm-ostree.*", parallel: nhosts) } stage("vmcheck") {