ium_464962/evaluation/Jenkinsfile_eval

32 lines
939 B
Plaintext
Raw Normal View History

2024-05-05 23:12:50 +02:00
pipeline {
agent any
parameters {
2024-05-08 23:31:16 +02:00
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Build for copying artifacts',
name: 'BUILD_SELECTOR'
)
}
2024-05-05 23:12:50 +02:00
stages {
stage('Git Checkout') {
steps {
checkout scm
}
}
2024-05-08 23:31:16 +02:00
stage('Copy Artifacts') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s464962-create-dataset'
copyArtifacts filter: '*', projectName: 's464962-training'
copyArtifacts filter: '*', projectName: 's464962-evaluation.eg', optional: true
}
2024-05-05 23:12:50 +02:00
}
2024-05-08 23:31:16 +02:00
stage('Predict') {
steps {
sh "chmod +x ./predict.py"
sh "python ./predict.py"
archiveArtifacts artifacts: 'predicted_selling_prices.csv', onlyIfSuccessful: true
}
2024-05-05 23:12:50 +02:00
}
}
2024-05-08 23:31:16 +02:00
}