
On Thu, 2019-07-18 at 14:20 +0200, Andrea Bolognani wrote:
The libosinfo project would like to start using these container images in their own CI pipeline, so they need the corresponding build dependencies to be included.
Signed-off-by: Andrea Bolognani <abologna@redhat.com> --- refresh | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/refresh b/refresh index 81df77e..2491613 100755 --- a/refresh +++ b/refresh @@ -59,13 +59,18 @@ class Dockerfile: self.cross_arch = None
self.projects = [ + "libosinfo", "libvirt", + "osinfo-db", + "osinfo-db-tools", ]
# Fedora Rawhide is special in that we use it to perform MinGW # builds, so we need to add the corresponding projects if self.os == "fedora-rawhide": self.projects += [ + "osinfo-db-tools+mingw*",
Please, move osinfo-db-tools+mingw* after libvirt+mingw* entry. By doing this, we'll avoid triggering your OCD. 0:-)
+ "libosinfo+mingw*", "libvirt+mingw*", ]