Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci/jenkins: Drop runAsUser: 0
Browse files Browse the repository at this point in the history
This provokes a virtiofs bug.
cgwalters committed Sep 7, 2023
1 parent 66f4050 commit df20b13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .cci.jenkinsfile
Original file line number Diff line number Diff line change
@@ -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") {

0 comments on commit df20b13

Please sign in to comment.