From 21f97e9bc3fa9bd710d27779d783831ba68ad80e Mon Sep 17 00:00:00 2001 From: Hongyu Liu Date: Fri, 4 Jul 2025 09:09:53 +0200 Subject: [PATCH] disables make flow in Jenkins to test cmake flow --- Jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 998f2fb..242427b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -57,6 +57,7 @@ pipeline { stage('make rtl') {steps { make_hello("rtl")}} stage('make ehrenberg') {steps { make_hello("ehrenberg")}} stage('make tgc_vp') {steps { make_hello("tgc_vp")}}*/ + /* stage('make hello-world') { matrix { axes { @@ -81,6 +82,7 @@ pipeline { } } } + */ stage('CMAKE flow for hello-world') { matrix { axes { @@ -114,9 +116,11 @@ pipeline { } } } + /* post { failure { sh("make -C hello-world/ clean") } } + */ }