diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-12-17 17:07:50 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-12-17 17:07:50 +0100 |
commit | 60e61ed1247c4f8efdd1805b1e1f2dda5ed2472c (patch) | |
tree | 3eaefd3c67c1d6872df2d13b920615cb74090da5 /Jenkinsfile | |
parent | afd8f53902477a5f889c4a28a2643028c74f270b (diff) | |
download | vyos-1x-60e61ed1247c4f8efdd1805b1e1f2dda5ed2472c.tar.gz vyos-1x-60e61ed1247c4f8efdd1805b1e1f2dda5ed2472c.zip |
Revert "Jenkins: T1870: fetch pull request refs from GitHub"VyOS_1.2-2019Q4
This reverts commit fa5447f6c9850756cb7e1acb499fd60b749dfcaa.
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 3dee31718..7b6dc49e3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -88,14 +88,8 @@ pipeline { steps { script { dir('build') { - checkout([ - $class: 'GitSCM', - branches: [[name: getGitBranchName()]], - doGenerateSubmoduleConfigurations: false, - extensions: [[$class: 'CleanCheckout']], - submoduleCfg: [], - userRemoteConfigs: [[refspec: "+refs/pull/*:refs/remotes/origin/* +refs/heads/*:refs/remotes/origin/*", url: getGitRepoURL()]] - ]) + git branch: getGitBranchName(), + url: getGitRepoURL() } } } |