From d12c25cfba940dbdb29ffad2eefdfb001d8b11dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Mon, 18 Nov 2019 16:43:37 +0100 Subject: [PATCH] moved arc patch up the chain --- Jenkins/Phabricator-pipeline/Jenkinsfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Jenkins/Phabricator-pipeline/Jenkinsfile b/Jenkins/Phabricator-pipeline/Jenkinsfile index a3925b4..dd23283 100644 --- a/Jenkins/Phabricator-pipeline/Jenkinsfile +++ b/Jenkins/Phabricator-pipeline/Jenkinsfile @@ -35,10 +35,11 @@ pipeline { echo "Building diff ${DIFF_ID} with PHID ${PHID}" } } - stage("git checkout"){ + stage("git checkout + arc patch"){ steps { git url: 'https://github.com/llvm/llvm-project.git' sh 'git clean -fdx' + sh "python3 ${SCRIPT_DIR}/phabtalk/apply_patch.py" sh 'mkdir -p llvm-premerge-checks' dir("llvm-premerge-checks") { @@ -47,11 +48,6 @@ pipeline { sh 'mkdir -p build' } } - stage('arc patch') { - steps { - sh "python3 ${SCRIPT_DIR}/phabtalk/apply_patch.py" - } - } stage('CMake') { steps { sh "${SCRIPT_DIR}/run_cmake.sh"