ium_z487175/Jenkinsfile-dataset-stats

19 lines
514 B
Plaintext
Raw Normal View History

2023-04-15 14:07:05 +02:00
pipeline {
agent any
stages {
2023-04-16 08:14:58 +02:00
stage('Checkout git clone') {
2023-04-15 14:07:05 +02:00
steps {
git branch: 'master', url: 'https://git.wmi.amu.edu.pl/s487175/ium_z487175.git'
}
}
stage('Copy dataset artifacts') {
steps {
copyArtifacts(
projectName: 'z-s487175-create-dataset',
fingerprintArtifacts: true,
2023-04-16 08:16:00 +02:00
selector: lastSuccessful()
2023-04-15 14:07:05 +02:00
)
}
}
}
}