ium_s449288/lab5/Jenkinsfile1
2022-05-12 23:17:24 +02:00

20 lines
525 B
Plaintext

pipeline {
agent {
docker { image 's449288/ium:2.1' }
}
stages {
stage('Stage 1') {
steps {
sh 'cd lab5/'
sh 'chmod u+x process_dataset.py simple_regression.py'
echo 'Processing dataset...'
sh 'python3 process_dataset.py'
echo 'Dataset processed'
echo 'Conducting simple regression model test'
sh 'python3 simple_regression.py'
echo 'Model predictions saved'
}
}
}
}