2023-04-08 16:20:53 +02:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
|
|
|
|
stages {
|
|
|
|
stage('Checkout') {
|
|
|
|
steps {
|
2023-04-08 16:28:30 +02:00
|
|
|
checkout scm
|
2023-04-08 16:20:53 +02:00
|
|
|
}
|
|
|
|
}
|
2023-04-17 16:12:36 +02:00
|
|
|
stage('Copy artifacts') {
|
2023-04-08 16:20:53 +02:00
|
|
|
steps {
|
2023-04-17 20:33:37 +02:00
|
|
|
copyArtifacts projectName: 'z-s487185-create-dataset', selector: lastSuccessful()
|
2023-04-08 16:20:53 +02:00
|
|
|
}
|
|
|
|
}
|
2023-04-17 16:12:36 +02:00
|
|
|
stage('Shell script') {
|
2023-04-17 14:28:34 +02:00
|
|
|
steps {
|
2023-04-18 21:29:13 +02:00
|
|
|
sh 'bash dataset-stats.sh > dataset-stats.txt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Save results') {
|
|
|
|
steps {
|
|
|
|
archiveArtifacts 'dataset-stats.txt'
|
2023-04-17 14:28:34 +02:00
|
|
|
}
|
|
|
|
}
|
2023-04-08 15:23:34 +02:00
|
|
|
}
|
|
|
|
}
|