This commit is contained in:
Maciej 2021-03-29 03:14:30 +02:00
parent 61f5596d96
commit 20e543a2cf

6
stats/Jenkinsfile vendored
View File

@ -2,6 +2,7 @@ pipeline {
agent any agent any
stages { stages {
stage('Copy Archive') { stage('Copy Archive') {
steps { steps {
script { script {
@ -19,9 +20,10 @@ pipeline {
sh './stats/generate_stats.sh' sh './stats/generate_stats.sh'
} }
} }
}
}
// stage('archiveArtifacts') // stage('archiveArtifacts')
// steps{ // steps{
// } // }
// } // }
}