29 lines
969 B
Plaintext
29 lines
969 B
Plaintext
pipeline {
|
|
agent any
|
|
parameters {
|
|
buildSelector(
|
|
defaultSelector: lastSuccessful(),
|
|
description: 'Which build to use for copying artifacts',
|
|
name: 'BUILD_SELECTOR'
|
|
)
|
|
}
|
|
stages {
|
|
stage('Copy artifacts') {
|
|
steps {
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 's444380-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
|
}
|
|
}
|
|
stage("Checkout git") {
|
|
steps {
|
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444380', url: 'https://git.wmi.amu.edu.pl/s444380/ium_444380.git']]])
|
|
}
|
|
}
|
|
stage("Calcualte statistics") {
|
|
steps {
|
|
sh "./calc_stats.sh | tee crime.stats.txt"
|
|
archiveArtifacts artifacts: "crime.stats.txt", onlyIfSuccessful: true
|
|
}
|
|
}
|
|
}
|
|
}
|