use new apply-patch for linux
This commit is contained in:
parent
d8902c883c
commit
ac2fcc5944
1 changed files with 3 additions and 1 deletions
4
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
4
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
|
@ -63,6 +63,7 @@ pipeline {
|
||||||
stage("git checkout"){
|
stage("git checkout"){
|
||||||
steps {
|
steps {
|
||||||
git url: 'https://github.com/llvm/llvm-project.git'
|
git url: 'https://github.com/llvm/llvm-project.git'
|
||||||
|
sh 'git reset --hard origin/master' // To remove any local commits to master.
|
||||||
sh 'git clean -fdx'
|
sh 'git clean -fdx'
|
||||||
sh 'git show -s'
|
sh 'git show -s'
|
||||||
sh 'mkdir -p llvm-premerge-checks'
|
sh 'mkdir -p llvm-premerge-checks'
|
||||||
|
@ -77,7 +78,8 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage('arc patch'){
|
stage('arc patch'){
|
||||||
steps {
|
steps {
|
||||||
sh "python3 ${SCRIPT_DIR}/phabtalk/apply_patch.py --comment-file ${PHAB_LOG}"
|
// sh "python3 ${SCRIPT_DIR}/phabtalk/apply_patch.py --comment-file ${PHAB_LOG}"
|
||||||
|
sh "${SCRIPT_DIR}/phabtalk/apply_patch2.py ${DIFF_ID} --token ${CONDUIT_TOKEN} --url ${PHABRICATOR_HOST} --comment-file ${PHAB_LOG}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('CMake') {
|
stage('CMake') {
|
||||||
|
|
Loading…
Reference in a new issue