From 21391f1f01e89ef83bba17e11e8b7887deab52b2 Mon Sep 17 00:00:00 2001 From: Hongyu Liu Date: Fri, 4 Jul 2025 09:43:15 +0200 Subject: [PATCH] updates Jenkinsfile --- Jenkinsfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 242427b..8af0ccc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,7 +30,9 @@ void make_hello(board) { } void cmake_hello(board,build_type,core_type) { - sh("cd hello-world/") + sh("pwd") + sh("cd hello-world/") + sh("pwd") def flavor ="${board}_${build_type}_${core_type}" if (core_type=="32") flavor ="${board}_${build_type}" @@ -63,7 +65,7 @@ pipeline { axes { axis{ name 'BOARD' - values 'iss', 'hifive1', 'TGCP', 'ehrenberg', 'rtl', 'tgc_vp' + values 'iss', 'hifive1', 'TGCP', 'Moonlight', 'rtl', 'tgc_vp' } } stages { @@ -107,7 +109,9 @@ pipeline { stages { stage("CMAKE") { steps { - cmake_hello("${BOARD}","${BUILD_TYPE}","${CORE_TYPE}") + dir("hello-world"){ + cmake_hello("${BOARD}","${BUILD_TYPE}","${CORE_TYPE}") + } } } }