diff options
Diffstat (limited to 'vars/buildPackage.groovy')
-rw-r--r-- | vars/buildPackage.groovy | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/vars/buildPackage.groovy b/vars/buildPackage.groovy index a222ba19..8b690d45 100644 --- a/vars/buildPackage.groovy +++ b/vars/buildPackage.groovy @@ -91,16 +91,12 @@ def call(description=null, pkgList=null, buildCmd=null) { def commitId = sh(returnStdout: true, script: 'git rev-parse --short=11 HEAD').trim() currentBuild.description = sprintf('Git SHA1: %s', commitId[-11..-1]) - sh "pwd; ls -al" - if (pkgList) { // Fetch individual package source code, but only if a URL is defined, this will // let us reuse this script for packages like vyos-1x which ship a Jenkinfile in // their repositories root folder. pkgList.each { pkg -> dir(env.BASE_DIR + pkg.name) { - sh "pwd; ls -al" - checkout([$class: 'GitSCM', doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'CleanCheckout']], @@ -132,7 +128,6 @@ def call(description=null, pkgList=null, buildCmd=null) { if (pkgList) { pkgList.each { pkg -> dir(env.BASE_DIR + pkg.name) { - sh "pwd; ls -al" sh pkg.buildCmd } } @@ -185,8 +180,6 @@ def call(description=null, pkgList=null, buildCmd=null) { if (env.DEBIAN_ARCH != 'all') ARCH_OPT = '-A ' + env.DEBIAN_ARCH - sh "pwd; ls -al" - files = findFiles(glob: '**/*.deb') if (files) { echo "Uploading package(s) and updating package(s) in the repository ..." |