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.
pipeline {
agent none
triggers {
pollSCM '*/5 * * * *'
pollSCM 'H/5 * * * *'
}
environment {
MY_BUILD_ID = "${JOB_BASE_NAME}-${BUILD_NUMBER}"
@ -23,6 +25,7 @@ pipeline {
RESULT_DIR = "${WORKSPACE}\\results"
LLVM_DIR = "${WORKSPACE}\\llvm-project"
}
stages {
stage("build and test on Windows and Linux"){
parallel {
stage("Linux"){
@ -136,4 +139,5 @@ pipeline {
}
}
}
}