2022-03-30 12:44:29 +02:00
|
|
|
pipeline {
|
|
|
|
agent {
|
|
|
|
dockerfile {
|
|
|
|
filename 'Dockerfile'
|
|
|
|
dir 'Docker'
|
|
|
|
label 'ium_docker'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
|
|
|
|
|
|
|
stage('Check out from version control') {
|
|
|
|
steps {
|
|
|
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444018', url: 'https://git.wmi.amu.edu.pl/s444018/ium_444018.git']]])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Split set into dev/train/test') {
|
|
|
|
steps {
|
2022-03-30 10:53:53 +02:00
|
|
|
sh 'ls -la'
|
2022-03-30 10:37:13 +02:00
|
|
|
sh 'python3 ./Docker/script.py'
|
2022-03-30 12:44:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2022-03-30 09:05:37 +02:00
|
|
|
}
|