diff mbox series

[rdma-core,2/2] cbuild: Update to Fedora Core 30

Message ID 20190507192017.6284-3-jgg@ziepe.ca (mailing list archive)
State Not Applicable
Headers show
Series Update rdma-core to Fedora Core 30 | expand

Commit Message

Jason Gunthorpe May 7, 2019, 7:20 p.m. UTC
From: Jason Gunthorpe <jgg@mellanox.com>

Now that FC30 is released, update cbuild to support it.

Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
---
 buildlib/cbuild | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/buildlib/cbuild b/buildlib/cbuild
index 095b17782fd331..0010f16acfc0e7 100755
--- a/buildlib/cbuild
+++ b/buildlib/cbuild
@@ -139,10 +139,10 @@  class centos7_epel(centos7):
         res.lines.append("RUN ln -s /usr/bin/cmake3 /usr/local/bin/cmake");
         return res;
 
-class fc29(Environment):
-    docker_parent = "fedora:29";
+class fc30(Environment):
+    docker_parent = "fedora:30";
     pkgs = (centos7.pkgs - {"make", "python-argparse" }) | {"ninja-build","pandoc","perl-generators","python3-Cython","python3-devel"};
-    name = "fc29";
+    name = "fc30";
     specfile = "redhat/rdma-core.spec";
     ninja_cmd = "ninja-build";
     is_rpm = True;
@@ -377,7 +377,7 @@  environments = [centos6(),
                 bionic(),
                 jessie(),
                 stretch(),
-                fc29(),
+                fc30(),
                 leap(),
                 tumbleweed(),
                 debian_experimental(),