ium_444417/Jenkinsfile.eval
s444417 707719b5b4
All checks were successful
s444417-training/pipeline/head This commit looks good
s444417-evaluation/pipeline/head This commit looks good
fix param from eval jenkins
2022-05-04 18:43:44 +02:00

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/$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'
}
}
}