jenkins executes from root of project directory

This commit is contained in:
Robert Bendun 2023-04-04 23:56:03 +02:00
parent 2410a89a93
commit 1a61aba350

2
Jenkinsfile vendored
View File

@ -6,7 +6,7 @@ node {
local_image.inside {
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'
sh 'cd src; ./prepare-ztm-data.sh'
archiveArtifacts artifacts: 'train.csv,test.csv', followSymlinks: false
}
}