diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2022-02-14 01:07:50 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2022-02-14 01:07:50 +0100 |
commit | 1967ce2058e8b5772d4388098acf7f5780ac8429 (patch) | |
tree | 596cb2e6494b49c62f357d3fdacabc3903abab02 /Jenkinsfile | |
parent | 60c84524143d1bf05ee419e6f6590564c03cf7f5 (diff) | |
download | monitoring_custom-1967ce2058e8b5772d4388098acf7f5780ac8429.tar.gz |
Jenkinsfile
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 364adf7..ab804eb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,12 +5,13 @@ pipeline { stage('Build Plugins') { steps { sh 'mkdir -p out/ && make INSTDIR=out install' + sh 'tar -C out -czvf plugins.tar.gz .' } } } post { always { - archiveArtifacts artifacts: 'out/*', fingerprint: false + archiveArtifacts artifacts: 'plugins.tar.gz', fingerprint: false } } } |