From db061df5efa2422af137199bacf1691eb66cd434 Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Wed, 8 Jan 2025 20:00:05 +0100 Subject: [PATCH] Fix instance of git_checkout In 70d9a4525b5b36e7644d817db04c554882485b54 the git_checkout function was removed but this remained. Fixes: 70d9a4525b5b ("drop smart-proxy-pr-test and all non-packaging PR testing remains") --- theforeman.org/pipelines/test/smart-proxy.groovy | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/theforeman.org/pipelines/test/smart-proxy.groovy b/theforeman.org/pipelines/test/smart-proxy.groovy index c391a0d6..8d28e63d 100644 --- a/theforeman.org/pipelines/test/smart-proxy.groovy +++ b/theforeman.org/pipelines/test/smart-proxy.groovy @@ -61,9 +61,7 @@ pipeline { stages { stage('Setup Git Repos') { steps { - script { - git_checkout() - } + git branch: git_branch, url: 'https://github.com/theforeman/smart-proxy' } } stage('Install dependencies') {