summaryrefslogtreecommitdiff
path: root/vars
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-06-22 17:52:03 +0200
committerChristian Poessinger <christian@poessinger.com>2020-06-22 17:52:03 +0200
commite2b2fdf440dffc719cb966bd3b1193ddf0ffb5ce (patch)
tree6fbb433ae6947d95cdc2f5d332eee5e1f1afd9dd /vars
parent8476678259edc2815f4eb0ba813a913d9487cb20 (diff)
downloadvyos-build-e2b2fdf440dffc719cb966bd3b1193ddf0ffb5ce.tar.gz
vyos-build-e2b2fdf440dffc719cb966bd3b1193ddf0ffb5ce.zip
Jenkins: lib: T2625: remove debug output
Diffstat (limited to 'vars')
-rw-r--r--vars/buildPackage.groovy7
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 ..."