triggering win build from phab job
This commit is contained in:
parent
398656cc7e
commit
c5dfed0000
1 changed files with 16 additions and 0 deletions
16
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
16
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
|
@ -87,6 +87,22 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
post {
|
||||||
|
success {
|
||||||
|
/* To test the windows builds:
|
||||||
|
If the linux compile succeed, trigger a windows build.
|
||||||
|
This does NOT give any feedback on Phabricator on the
|
||||||
|
windows build.
|
||||||
|
|
||||||
|
Fire & Forget: Do not wait for the job to finish,
|
||||||
|
ingore the results
|
||||||
|
*/
|
||||||
|
build job: 'amd64_windows_vs2017' propagate: false wait: false parameters: [
|
||||||
|
[$class: 'StringParameterValue', name: 'DIFF_ID', value: "$DIFF_ID"],
|
||||||
|
[$class: 'StringParameterValue', name: 'PHID', value: "$PHID"],
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
stage('ninja check-all') {
|
stage('ninja check-all') {
|
||||||
steps {
|
steps {
|
||||||
|
|
Loading…
Reference in a new issue