25 lines
588 B
Groovy
25 lines
588 B
Groovy
pipeline {
|
|
agent {
|
|
dockerfile {
|
|
filename 'Dockerfile'
|
|
dir './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 {
|
|
sh 'ls -la'
|
|
sh 'python3 ./Docker/script.py'
|
|
}
|
|
}
|
|
|
|
}
|
|
} |