From b33d303a9d1a01b1b1f834bbd333333d2cf6cc7a Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 14 Apr 2017 10:11:42 -0400 Subject: [PATCH] ci/container: Use updates-testing This is another way to partially address https://github.com/projectatomic/rpm-ostree/pull/740 We should also likely have a `fedora/25/atomic/testing` image. Closes: #742 Approved by: jlebon --- .redhat-ci.Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.redhat-ci.Dockerfile b/.redhat-ci.Dockerfile index 6d287add52..296cf5e600 100644 --- a/.redhat-ci.Dockerfile +++ b/.redhat-ci.Dockerfile @@ -2,9 +2,11 @@ FROM fedora:25 # We could use the upstream spec file here, but anyway for # runtime reqs, we're at the mercy of whatever in the -# updates repo. +# updates repo. Though we do explicitly use updates-testing +# so our CI coverage indirectly tests that. -RUN dnf install -y @buildsys-build && \ +RUN dnf config-manager --set-enabled updates-testing && \ + dnf install -y @buildsys-build && \ dnf install -y 'dnf-command(builddep)' && \ dnf builddep -y rpm-ostree && \ dnf install -y rpm-ostree && \