full paths in Jenkinsfile

This commit is contained in:
Robert Bendun 2023-04-05 00:46:50 +02:00
parent 68e1006776
commit 4d26f08fd0

2
Jenkinsfile vendored
View File

@ -7,7 +7,7 @@ node {
stage('Build') {
checkout([$class: 'GitSCM', branches: [[name: 'ztm']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452639/ium_452639']]])
sh 'cd src; ./prepare-ztm-data.sh'
archiveArtifacts artifacts: 'stop_times.train.tsv,stop_times.test.tsv,stop_times.valid.tsv', followSymlinks: false
archiveArtifacts artifacts: 'src/stop_times.train.tsv,src/stop_times.test.tsv,src/stop_times.valid.tsv', followSymlinks: false
}
}
}