ium_444018/Docker/Jenkinsfile

19 lines
349 B
Plaintext
Raw Normal View History

2022-03-30 12:44:29 +02:00
pipeline {
agent {
dockerfile {
filename 'Dockerfile'
2022-03-30 12:49:17 +02:00
dir './Docker'
2022-03-30 12:44:29 +02:00
}
}
stages {
2022-03-30 12:54:02 +02:00
2022-03-30 12:44:29 +02:00
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
}