Merge pull request #90 from larry-xmos/release/0.1.3

XVF3500 maintenance release
This commit is contained in:
Sam Chesney
2019-08-23 14:56:04 +01:00
committed by GitHub

19
Jenkinsfile vendored
View File

@@ -86,16 +86,31 @@ pipeline {
} }
} }
} }
stage('Update') { stage('Release and update') {
agent { agent {
label 'x86_64&&brew' label 'x86_64&&brew'
} }
stages {
stage('Release') {
when {
expression {
isReleaseBranchOfOrganisation('xmos')
}
}
steps {
sh 'mkdir ${REPO}/empty'
xcoreReleaseToGithub("${WORKSPACE}/${REPO}","${WORKSPACE}/${REPO}/empty")
}
}
stage('Update') {
steps { steps {
updateViewfiles() updateViewfiles()
} }
}
}
post { post {
cleanup { cleanup {
cleanWs() xcoreCleanSandbox()
} }
} }
} }