diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-05-04 14:01:55 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-05-05 14:57:07 +0200 |
commit | 9da68d6850a5a103e8569bdebab0a9fa7776d823 (patch) | |
tree | bb53a62c6dc1c6678d030c8815a1e5908d27d675 /Jenkinsfile | |
parent | 8be350bf26d119ac5c8878cd586ca3f7092b1fb2 (diff) | |
download | vyos-build-9da68d6850a5a103e8569bdebab0a9fa7776d823.tar.gz vyos-build-9da68d6850a5a103e8569bdebab0a9fa7776d823.zip |
Jenkins: list build packages
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 90c38d1c..243a019f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -145,6 +145,12 @@ pipeline { } } + stage('List Packages') { + steps { + sh "find packages/ -maxdepth 1 -type f -print0 | xargs -0r ls" + } + } + stage('ISO Image') { steps { sh ''' |