391b308c7a
Some checks failed
s430705-training/pipeline/head There was a failure building this commit
34 lines
871 B
Plaintext
34 lines
871 B
Plaintext
pipeline {
|
|
agent {dockerfile true}
|
|
parameters {
|
|
buildSelector(
|
|
defaultSelector: lastSuccessful(),
|
|
description: 'Which build to use for copying artifacts',
|
|
name: 'BUILD_SELECTOR')
|
|
}
|
|
stages {
|
|
stage('copyArtifacts') {
|
|
steps {
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 's430705-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
|
sh 'python3 lab06_training.py'
|
|
sh 'ls -l'
|
|
sh 'pwd'
|
|
|
|
}
|
|
}
|
|
|
|
stage('Archive artifacts') {
|
|
steps{
|
|
sh 'zip model.zip model_movies'
|
|
archiveArtifacts 'model.zip'
|
|
}
|
|
}
|
|
stage('Send notification'){
|
|
steps{
|
|
emailext body: currentBuild.result ?: 'SUCCESS +1 YEA',
|
|
subject: 's43705',
|
|
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
|
|
}
|
|
}
|
|
}
|
|
} |