From: Michael Tremer Date: Wed, 19 Feb 2025 19:30:23 +0000 (+0000) Subject: jenkins: Use more modern command line to install dev tools on Fedora X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=891a8e6ac3a0234fba741b4883f77136d8fdfbc2;p=pakfire.git jenkins: Use more modern command line to install dev tools on Fedora Signed-off-by: Michael Tremer --- diff --git a/Jenkinsfile b/Jenkinsfile index 9c7b0db4..7c0641cc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -526,11 +526,7 @@ pipeline { // Installs everything we need on RHEL/Fedora/etc. def installBuildDepsRedHat(distro, compier) { // Install basic development tools - if (distro == "fedora:rawhide") { - sh "dnf group install -y development-tools" - } else { - sh "dnf group install -y 'Development Tools'" - } + sh "dnf group install -y development-tools" // Enable CodeReady Builder for Almalinux 9 if (distro.contains("almalinux:9")) {