1
0
Fork 0

moved arc patch up the chain

This commit is contained in:
Christian Kühnel 2019-11-18 16:43:37 +01:00
parent b53b2110ef
commit d12c25cfba

View file

@ -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"