ium_444018/Docker/Jenkinsfile

23 lines
534 B
Plaintext
Raw Normal View History

2022-03-30 09:12:46 +02:00
node {
def app
stage('Clone repository') {
checkout scm
}
stage('Build image') {
2022-03-30 09:14:10 +02:00
app = docker.build("sparafinski/ium", "./Docker/")
2022-03-30 09:12:46 +02:00
}
2022-03-30 09:38:17 +02:00
stage('Split set into dev/train/test') {
app.inside {
2022-03-30 10:15:30 +02:00
sh 'echo "Raz dwa trzy"'
sh 'mkdir Test'
2022-03-30 09:38:17 +02:00
sh 'pwd'
2022-03-30 10:16:28 +02:00
sh 'ls -la'
2022-03-30 09:39:58 +02:00
2022-03-30 09:12:46 +02:00
}
}
2022-03-30 09:05:37 +02:00
}