Merge pull request #5778 from corda/add_jenkinsfile_to_4.1_to_allow_merges

placeholder jenkins file
This commit is contained in:
Stefano Franz 2019-12-02 11:17:01 +00:00 committed by GitHub
commit b150001ff6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

23
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,23 @@
@Library('existing-build-control')
import static com.r3.build.BuildControl.killAllExistingBuildsForJob
killAllExistingBuildsForJob(env.JOB_NAME, env.BUILD_NUMBER.toInteger())
pipeline {
agent { label 'k8s' }
options { timestamps() }
stages {
stage('OpenSource 4.1 Placeholder build') {
steps {
sh "echo \"placeholder\""
}
}
}
post {
cleanup {
deleteDir() /* clean up our workspace */
}
}
}