Skip to content
Snippets Groups Projects
Commit b575e406 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

ci: create contrib tarball dir

Change-Id: I033b00568ed7c9a3d11f2bd30a73e0e2a2b9e701
parent d31775ce
No related branches found
No related tags found
No related merge requests found
......@@ -81,15 +81,19 @@ pipeline {
steps {
script {
def daemonDir = pwd() + '/daemon'
def contribDir = daemonDir + '/contrib/tarballs'
if (fileExists(RING_EXTRATOOLS_TARBALLS)) {
sh "cp ${RING_EXTRATOOLS_TARBALLS}/* ${daemonDir}/extras/tools/ || echo 'No extras-tools tarballs cache'"
}
if (fileExists(RING_CONTRIB_TARBALLS)) {
dir(contribDir) {
sh 'pwd -P'
sh "cp ${RING_CONTRIB_TARBALLS}/* ${daemonDir}/contrib/tarballs/ || echo 'No contribs tarballs cache'"
}
}
}
}
}
stage('Build and test client') {
environment {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment