ium_s449288/Jenkinsfile

15 lines
325 B
Plaintext
Raw Normal View History

2022-04-02 15:36:46 +02:00
pipeline {
agent {
2022-04-02 16:40:30 +02:00
dockerfile true
2022-04-02 15:36:46 +02:00
}
stages {
stage('Stage 1') {
steps {
2022-04-02 16:40:30 +02:00
sh 'chmod u+x ./process_dataset.py'
2022-04-02 15:36:46 +02:00
echo 'Processing dataset...'
sh 'python3 process_dataset.py'
echo 'Dataset processed'
}
}
}
2022-04-02 16:50:16 +02:00
}