9151f22837
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
50 lines
1.7 KiB
Plaintext
50 lines
1.7 KiB
Plaintext
pipeline {
|
|
agent {
|
|
dockerfile true
|
|
}
|
|
parameters{
|
|
string(
|
|
defaultValue: 'master',
|
|
description: 'training branch name',
|
|
name: 'TRAINING_BRANCH'
|
|
)
|
|
password(
|
|
defaultValue: '',
|
|
description: 'JENKINS password',
|
|
name: 'JENKINS_KEY'
|
|
)
|
|
}
|
|
stages {
|
|
stage('Copy prev build artifact') {
|
|
steps {
|
|
script {
|
|
if (currentBuild.previousBuild) {
|
|
try {
|
|
copyArtifacts(projectName: currentBuild.projectName,
|
|
selector: specific("${currentBuild.previousBuild.number}"))
|
|
def previousFile = readFile(file: "trainResults.csv")
|
|
echo("The current build is ${currentBuild.number}")
|
|
echo("The previous build artifact was: ${previousFile}")
|
|
} catch(err) {
|
|
// ignore error
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
stage('Copy') {
|
|
steps {
|
|
copyArtifacts projectName: 's444417-create-dataset'
|
|
copyArtifacts projectName: 's444417-training/${params.TRAINING_BRANCH}'
|
|
sh 'python3 ./src/evalScript.py'
|
|
archiveArtifacts 'trainResults.csv'
|
|
sh "ls -la"
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
emailext body: "${currentBuild.currentResult}", subject: 's444417-evaluation build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
|
|
}
|
|
}
|
|
} |