1
0
Fork 0

added stages

This commit is contained in:
Christian Kühnel 2020-01-16 17:48:07 +01:00
parent b35a00dc57
commit 371ff6041f

View file

@ -13,8 +13,10 @@
// limitations under the License. // limitations under the License.
pipeline { pipeline {
agent none
triggers { triggers {
pollSCM '*/5 * * * *' pollSCM 'H/5 * * * *'
} }
environment { environment {
MY_BUILD_ID = "${JOB_BASE_NAME}-${BUILD_NUMBER}" MY_BUILD_ID = "${JOB_BASE_NAME}-${BUILD_NUMBER}"
@ -23,6 +25,7 @@ pipeline {
RESULT_DIR = "${WORKSPACE}\\results" RESULT_DIR = "${WORKSPACE}\\results"
LLVM_DIR = "${WORKSPACE}\\llvm-project" LLVM_DIR = "${WORKSPACE}\\llvm-project"
} }
stages {
stage("build and test on Windows and Linux"){ stage("build and test on Windows and Linux"){
parallel { parallel {
stage("Linux"){ stage("Linux"){
@ -136,4 +139,5 @@ pipeline {
} }
} }
}
} }