Add new Jenkinsfile

This commit is contained in:
Agata 2022-05-17 20:44:27 +02:00
parent f6f45ee75e
commit 09d5694438

View File

@ -0,0 +1,20 @@
pipeline {
agent {
docker {
image 'agakul/ium:mlflow'}
}
parameters {
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
}
stages {
stage('Copy artifacts') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's444501-training/master', selector: buildParameter('BUILD_SELECTOR')
}
}
}
}