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'
|
2023-03-29 01:18:17 +02:00
|
|
|
archiveArtifacts artifacts: 'train.csv,test.csv', followSymlinks: false
|
2023-03-22 15:06:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|