23 lines
675 B
Plaintext
23 lines
675 B
Plaintext
pipeline {
|
|
agent {
|
|
docker { image 's444507_create_dataset_image:latest' }
|
|
}
|
|
stages {
|
|
stage('Get arifacts') {
|
|
steps {
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 's444507-create-dataset', selector: lastSuccessful()
|
|
}
|
|
}
|
|
stage('Show stats') {
|
|
steps {
|
|
sh "python3 ./script-stats.py"
|
|
sh "python3 ./lab05_deepLearning.py"
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
success {
|
|
archiveArtifacts artifacts: 'Car_Prices_Poland_Kaggle*, prediction_results.csv, CarPrices_pytorch_model.pkl', followSymlinks: false
|
|
}
|
|
}
|
|
} |