From 76c87d3340dd3021a54cad8bb730b403edd11dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Mon, 16 Dec 2019 09:24:25 +0000 Subject: [PATCH] fixed checkout path --- Jenkins/master-windows-pipeline/Jenkinsfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Jenkins/master-windows-pipeline/Jenkinsfile b/Jenkins/master-windows-pipeline/Jenkinsfile index 7592d7f..96ba140 100644 --- a/Jenkins/master-windows-pipeline/Jenkinsfile +++ b/Jenkins/master-windows-pipeline/Jenkinsfile @@ -31,15 +31,15 @@ pipeline { stages { stage("git checkout"){ steps { + echo "getting llvm-premerge-checks... " dir("llvm-premerge-checks") { git url: 'https://github.com/google/llvm-premerge-checks.git' } - dir("llvm-project"){ - powershell "${SCRIPT_DIR}/git_checkout.ps1" - powershell 'New-Item -ItemType Directory -Force -Path ${TARGET_DIR}' - powershell 'New-Item -ItemType Directory -Force -Path ${RESULT_DIR}' - } + echo "getting llvm-project... " + powershell "${SCRIPT_DIR}/git_checkout.ps1" + powershell 'New-Item -ItemType Directory -Force -Path ${TARGET_DIR}' + powershell 'New-Item -ItemType Directory -Force -Path ${RESULT_DIR}' } } stage('CMake') {