Michael Vogt
Michael Vogt
This commit adds support for reading the build config via stdin. To do that the `-config` switch now supports `-` and with that it will use `os.Stdin` insteadof readin the...
In 17d3b56 osbuild-dnf-json was changed to run outside the container. This lead to a regression in accessing subscribed content. This commit partially reverts this commit to run dnf again inside...
[draft until [0] has landed in images] This commit adds a new wait `event:serial-output` event to the QEMU vm class and uses it in the `test_iso_installs` test to accommodate the...
During the "bib" build we have a new selinux denial that needs investigation. So far we know: ``` type=AVC msg=audit(1726075609.598:896): avc: denied { nnp_transition nosuid_transition } for pid=18439 comm="bootc" scontext=system_u:system_r:install_t:s0:c264,c849...
To ensure we do not skip tests in GH actions that we want to run this commit add a new explicit way to allowlist tests that are okay to skip....
We see the the following test failure sometimes in our CI: ``` ... FAILED test/mod/test_loop.py::test_lock - BlockingIOError: [Errno 11] Resource temporarily unavailable ``` This seems to be a race, its...
Just a quick draft to see what it would take to move to fastjson schema. Tony of busywork as the errors are different
Cleanup of https://github.com/osbuild/osbuild/pull/1878 - build on top of https://github.com/osbuild/osbuild/pull/1912 This makes it more uniform with our other tests that are mostly pytest based and it also makes it possible to...
In order to avoid having to rely on the output of `osbuild --json` when using `--progress=JSONSeqMonitor` the monitor needs to include the `osbuild.pipeline.BuildResult` for each individual stage. This commit adds...
This commit adds support to construct a build root for a pipeline from a container instead of a previous pipeline/tree. This is based on the idea from Ondrej in issue...