Compare commits
No commits in common. "c9c98dff017bb4a344933888ecd711e0ee9cedd7" and "93c0381a3af1ecfaf22f5edd816639a216b5c799" have entirely different histories.
c9c98dff01
...
93c0381a3a
@ -1,36 +0,0 @@
|
||||
pipeline {
|
||||
agent any
|
||||
parameters {
|
||||
buildSelector (
|
||||
defaultSelector: lastSuccessful(),
|
||||
description: 'Build for copying artifacts',
|
||||
name: 'BUILD_SELECTOR'
|
||||
)
|
||||
}
|
||||
triggers {
|
||||
upstream(upstreamProjects: 's464962-training, threshold: hudson.model.Result.SUCCESS)
|
||||
}
|
||||
stages {
|
||||
stage('Git Checkout') {
|
||||
steps {
|
||||
checkout scm
|
||||
}
|
||||
}
|
||||
stage('Copy Artifacts') {
|
||||
steps {
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s464962-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
||||
copyArtifacts filter: '*', projectName: 's464962-training, selector: buildParameter('BUILD_SELECTOR')
|
||||
copyArtifacts filter: '*', projectName: 's464962-evaluation.eg', selector: buildParameter('BUILD_SELECTOR'), optional: true
|
||||
}
|
||||
}
|
||||
stage('Predict') {
|
||||
steps {
|
||||
sh "chmod +x ./predict.py"
|
||||
sh "python .predict.py"
|
||||
archiveArtifacts artifacts: 'predicted_selling_prices.csv', onlyIfSuccessful: true
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user