2021-03-27 17:50:28 +01:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
stages {
|
2021-03-27 18:48:24 +01:00
|
|
|
stage('Clone repo') {
|
2021-03-27 17:50:28 +01:00
|
|
|
steps {
|
2021-03-27 18:48:24 +01:00
|
|
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s434765/ium_434765']]])
|
|
|
|
sh get_data_simple.sh
|
|
|
|
archiveArtifacts data_dev
|
|
|
|
archiveArtifacts data_shuf
|
|
|
|
archiveArtifacts data_test
|
|
|
|
archiveArtifacts data_train
|
2021-03-27 17:50:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|