ium_452639/dataset.jenkinsfile

23 lines
602 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
2023-05-15 02:40:00 +02:00
stage('Configuration')
2023-05-13 01:10:40 +02:00
def local_image = docker.build("s452639-image")
2023-04-04 23:48:57 +02:00
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-05-13 00:46:35 +02:00
archiveArtifacts artifacts: 'src/stop_times.normalized.tsv,src/stop_times.train.tsv,src/stop_times.test.tsv,src/stop_times.valid.tsv,src/stop_times.categories.tsv',
followSymlinks: false
2023-04-04 23:48:57 +02:00
}
2023-05-15 02:40:00 +02:00
}
2023-05-13 01:50:04 +02:00
2023-05-15 02:40:00 +02:00
stage('Trigger') {
build wait: false, job: 's452639-training'
2023-04-04 23:48:57 +02:00
}
2023-03-22 15:06:06 +01:00
}