ium_452639/Jenkinsfile

9 lines
290 B
Plaintext
Raw Normal View History

2023-03-22 15:06:06 +01:00
node {
2023-03-22 15:17:22 +01:00
stage('Build') {
checkout([$class: 'GitSCM', branches: [[name: 'ztm']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452639/ium_452639']]])
sh './prepare-ztm-data.sh'
archiveArtifacts artifacts: 'stop_times.csv', followSymlinks: false
2023-03-22 15:06:06 +01:00
}
}