Skip to content

Commit

Permalink
ci: Workaround virtiofs
Browse files Browse the repository at this point in the history
  • Loading branch information
cgwalters committed Sep 8, 2023
1 parent 4de4960 commit 908dcb0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .cci.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ cosaPod(runAsUser: 0, memory: "4608Mi", cpu: "4") {
mkdir insttree
tar -C insttree -xzvf insttree.tar.gz
rsync -rlv insttree/ /
coreos-assembler init --force https://github.com/coreos/fedora-coreos-config
runuser -u builder -- coreos-assembler init --force https://github.com/coreos/fedora-coreos-config
mkdir -p overrides/rootfs
mv insttree/* overrides/rootfs/
rmdir insttree
cosa fetch
cosa build
runuser -u builder -- cosa fetch
runuser -u builder -- cosa build
""")
}
// The e2e-adopt test will use the ostree commit we just generated above
Expand All @@ -63,7 +63,7 @@ cosaPod(runAsUser: 0, memory: "4608Mi", cpu: "4") {
}
stage("Kola testing") {
// The previous e2e leaves things only having built an ostree update
shwrap("cosa build")
shwrap("runuser -u builder -- cosa build")
// bootupd really can't break upgrades for the OS
kola(cosaDir: "${env.WORKSPACE}", extraArgs: "ext.*bootupd*", skipUpgrade: true, skipBasicScenarios: true)
}
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e-update/e2e-update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ if test -z "${e2e_skip_build:-}"; then
add_override grub2-2.06-70.fc37
mv ${test_tmpdir}/yumrepo/packages/$(arch)/*.rpm ${overrides}/rpm/
# Only build ostree update
runv cosa build ostree
runv runuser -u builder -- cosa build ostree
undo_manifest_fork
fi
echo "Preparing test"
Expand Down Expand Up @@ -130,7 +130,7 @@ systemd:
EOF
runv butane -o ${testtmp}/test.ign ${testtmp}/test.bu
cd ${testtmp}
qemuexec_args=(kola qemuexec --propagate-initramfs-failure --qemu-image "${prev_image}" --qemu-firmware uefi \
qemuexec_args=(runuser -u builder -- kola qemuexec --propagate-initramfs-failure --qemu-image "${prev_image}" --qemu-firmware uefi \
-i test.ign --bind-ro ${COSA_DIR},/run/cosadir --bind-ro ${bootupd_git},/run/bootupd-source --bind-rw .,/run/testtmp)
if test -n "${e2e_debug:-}"; then
runv ${qemuexec_args[@]} --devshell
Expand Down

0 comments on commit 908dcb0

Please sign in to comment.