changed Jenkinsfiles filenames
This commit is contained in:
parent
4ebdac4423
commit
1185a707a9
68
evaluation.Jenkinsfile
Normal file
68
evaluation.Jenkinsfile
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
pipeline {
|
||||||
|
agent {
|
||||||
|
dockerfile true
|
||||||
|
}
|
||||||
|
|
||||||
|
parameters {
|
||||||
|
buildSelector(
|
||||||
|
defaultSelector: lastSuccessful(),
|
||||||
|
description: 'Which build to use for copying data artifacts',
|
||||||
|
name: 'BUILD_SELECTOR_DATASET'
|
||||||
|
)
|
||||||
|
|
||||||
|
buildSelector(
|
||||||
|
defaultSelector: lastSuccessful(),
|
||||||
|
description: 'Which build to use for copying training artifacts',
|
||||||
|
name: 'BUILD_SELECTOR_TRAINING'
|
||||||
|
)
|
||||||
|
|
||||||
|
buildSelector(
|
||||||
|
defaultSelector: lastSuccessful(),
|
||||||
|
description: 'Which build to use for copying evaluation artifacts',
|
||||||
|
name: 'BUILD_SELECTOR_EVALUATION'
|
||||||
|
)
|
||||||
|
|
||||||
|
gitParameter branchFilter: 'origin/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH'
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
stages {
|
||||||
|
|
||||||
|
stage('copy artifacts')
|
||||||
|
{
|
||||||
|
steps
|
||||||
|
{
|
||||||
|
copyArtifacts(fingerprintArtifacts: true, projectName: 's434742-create-dataset', selector: buildParameter('BUILD_SELECTOR_DATASET'))
|
||||||
|
copyArtifacts(fingerprintArtifacts: true, projectName: 's434742-training/master', selector: buildParameter('BUILD_SELECTOR_TRAINING'))
|
||||||
|
copyArtifacts(fingerprintArtifacts: true, optional:true, projectName: 's434742-evaluation/master', selector: buildParameter('BUILD_SELECTOR_EVALUATION'))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('evaluation') {
|
||||||
|
steps {
|
||||||
|
script {
|
||||||
|
|
||||||
|
sh 'chmod +x avocado-evaluation.py'
|
||||||
|
sh 'python3 avocado-evaluation.py'
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('archiveArtifacts') {
|
||||||
|
steps{
|
||||||
|
archiveArtifacts 'eval_results.txt'
|
||||||
|
archiveArtifacts 'eval_plot.png'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
stage('sendMail') {
|
||||||
|
steps{
|
||||||
|
emailext body: currentBuild.result ?: 'SUCCESS',
|
||||||
|
subject: 's434742 evaluation',
|
||||||
|
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
61
training.Jenkinsfile
Normal file
61
training.Jenkinsfile
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
pipeline {
|
||||||
|
agent any;
|
||||||
|
|
||||||
|
options {
|
||||||
|
copyArtifactPermission('s434742-evaluation_master');
|
||||||
|
}
|
||||||
|
|
||||||
|
parameters {
|
||||||
|
buildSelector(
|
||||||
|
defaultSelector: lastSuccessful(),
|
||||||
|
description: 'Which build to use for copying artifacts',
|
||||||
|
name: 'BUILD_SELECTOR'
|
||||||
|
)
|
||||||
|
string(
|
||||||
|
defaultValue: '16',
|
||||||
|
description: 'batch size',
|
||||||
|
name: 'BATCH_SIZE'
|
||||||
|
)
|
||||||
|
string(
|
||||||
|
defaultValue: '10',
|
||||||
|
description: 'epochs',
|
||||||
|
name: 'EPOCHS'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
stages {
|
||||||
|
stage('copyArtifacts') {
|
||||||
|
steps {
|
||||||
|
copyArtifacts fingerprintArtifacts: true, projectName: 's434742-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('docker-training') {
|
||||||
|
steps {
|
||||||
|
script {
|
||||||
|
def img = docker.build('patlaz/ium:1.0')
|
||||||
|
img.inside {
|
||||||
|
sh 'chmod +x avocado-training.py'
|
||||||
|
sh 'echo ${EPOCHS} ${BATCH_SIZE}'
|
||||||
|
sh 'python3 avocado-training.py ${EPOCHS} ${BATCH_SIZE}'
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
stage('archiveArtifacts') {
|
||||||
|
steps{
|
||||||
|
archiveArtifacts 'avocado_model.h5'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('sendMail') {
|
||||||
|
steps{
|
||||||
|
emailext body: currentBuild.result ?: 'SUCCESS',
|
||||||
|
subject: 's434742 training',
|
||||||
|
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user