From 7039ed08dea0eebf20dec4e4868b338351b7ed4b Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Thu, 4 Jan 2024 14:32:06 +0100 Subject: [PATCH] Drop DISTRO env var for foreman-selinux Since Foreman 3.6 this variable isn't used anymore[1]. [1]: https://projects.theforeman.org/issues/35971 --- theforeman.org/pipelines/release/source/foreman-selinux.groovy | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/theforeman.org/pipelines/release/source/foreman-selinux.groovy b/theforeman.org/pipelines/release/source/foreman-selinux.groovy index 6b6e110d..46b54949 100644 --- a/theforeman.org/pipelines/release/source/foreman-selinux.groovy +++ b/theforeman.org/pipelines/release/source/foreman-selinux.groovy @@ -20,10 +20,9 @@ pipeline { stage("Build for rhel7") { steps { script { - distro = 'rhel7' instprefix = pwd(tmp: true) } - sh "make INSTPREFIX=${instprefix}/${distro} DISTRO=${distro}" + sh "make INSTPREFIX=${instprefix}" } } stage('Build and Archive Source') {