Update 'Jenkinsfile-Docker'

This commit is contained in:
Wojciech Mikołajski 2023-06-17 20:22:26 +02:00
parent c503b911da
commit 935027600c

View File

@ -18,14 +18,14 @@ stages {
stage('Train') {
steps {
sh 'ls -l'
sh 'docker run wujt python3 train.py 89'
sh 'docker run wujt python3 train.py'
}
}
stage('Prediction') {
steps {
sh 'ls -l'
sh 'docker run wujt python3 pred.py 89'
archiveArtifacts artifacts: 'predictionResults1.csv'
sh 'docker run wujt python3 pred.py'
archiveArtifacts artifacts: 'predictionResults.csv'
}
}
}