ium_452639/Jenkinsfile

15 lines
378 B
Plaintext
Raw Normal View History

2023-03-22 15:06:06 +01:00
node {
2023-04-04 23:48:57 +02:00
checkout scm
def local_image = docker.build("local-image")
local_image.inside {
stage('Build') {
2023-03-22 15:17:22 +01:00
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-04-04 23:48:57 +02:00
}
}
2023-03-22 15:06:06 +01:00
}