ium_s449288/lab4/Jenkinsfile1

15 lines
344 B
Plaintext
Raw Normal View History

2022-04-10 14:40:57 +02:00
pipeline {
agent {
docker { image 's449288/ium:2.0' }
}
stages {
stage('Stage 1') {
steps {
sh 'chmod u+x ./process_dataset.py'
echo 'Processing dataset...'
sh 'python3 process_dataset.py'
echo 'Dataset processed'
}
}
}
}