ium_452639/Jenkinsfile

15 lines
441 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 'cd src; ./prepare-ztm-data.sh'
2023-04-05 00:46:50 +02:00
archiveArtifacts artifacts: 'src/stop_times.train.tsv,src/stop_times.test.tsv,src/stop_times.valid.tsv', followSymlinks: false
2023-04-04 23:48:57 +02:00
}
}
2023-03-22 15:06:06 +01:00
}