15 lines
386 B
Groovy
15 lines
386 B
Groovy
node {
|
|
checkout scm
|
|
|
|
def local_image = docker.build("local-image")
|
|
|
|
local_image.inside {
|
|
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: 'train.csv,test.csv', followSymlinks: false
|
|
}
|
|
}
|
|
}
|
|
|