Skip to content

Commit 100198b

Browse files
committed
cmdlib: don't use cache qcow for composes; use virtiofs
Now that our OSBuild workflow is using the cache we saw at least one case where the pipeline was running out of space when composing the extensions. Since we had a previous proposal [1] to just drop the cache altogether anyway let's try to at least remove it from the runcompose functions to eliminate the use of it there anyway. [1] #3615
1 parent 0daf8fa commit 100198b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cmdlib.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ runcompose_tree() {
563563
(umask 0022 && sudo -E "$@")
564564
sudo chown -R -h "${USER}":"${USER}" "${tmprepo}"
565565
else
566-
runvm_with_cache -- "$@" --repo "${repo}" --write-composejson-to "${composejson}"
566+
runvm -- "$@" --repo "${repo}" --write-composejson-to "${composejson}"
567567
fi
568568
}
569569

@@ -587,7 +587,7 @@ runcompose_extensions() {
587587
(umask 0022 && sudo -E "$@")
588588
sudo chown -R -h "${USER}":"${USER}" "${outputdir}"
589589
else
590-
runvm_with_cache -- "$@"
590+
runvm -- "$@"
591591
fi
592592
}
593593

0 commit comments

Comments
 (0)