added stages
This commit is contained in:
parent
b35a00dc57
commit
371ff6041f
1 changed files with 104 additions and 100 deletions
6
Jenkins/release-pipeline/Jenkinsfile
vendored
6
Jenkins/release-pipeline/Jenkinsfile
vendored
|
@ -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 {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue