ium_444507/Jenkinsfile_stats

23 lines
646 B
Plaintext
Raw Normal View History

2022-04-02 22:21:12 +02:00
pipeline {
2022-04-02 22:39:07 +02:00
agent {
docker { image 's444507_create_dataset_image:latest' }
}
2022-04-02 22:21:12 +02:00
stages {
2022-04-02 22:33:16 +02:00
stage('Get arifacts') {
2022-04-02 22:21:12 +02:00
steps {
2022-04-02 22:39:07 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 's444507-create-dataset', selector: lastSuccessful()
2022-04-02 22:21:12 +02:00
}
}
2022-04-02 22:33:16 +02:00
stage('Show stats') {
steps {
2022-04-02 22:45:55 +02:00
sh "python3 ./script-stats.py"
2022-04-24 14:52:07 +02:00
sh "python3 ./lab05_deepLearning.py"
2022-04-02 22:33:16 +02:00
}
2022-04-02 22:21:12 +02:00
}
}
2022-04-24 14:52:07 +02:00
post {
success {
2022-04-24 15:48:58 +02:00
archiveArtifacts artifacts: 'Car_Prices_Poland_Kaggle*, prediction_results.csv', followSymlinks: false
2022-04-24 14:52:07 +02:00
}
}
2022-04-02 22:21:12 +02:00
}