From 0d7cabd46541c31bf27e4fab3d729fa4db1f1ea3 Mon Sep 17 00:00:00 2001 From: Uwe Jakobeit Date: Mon, 30 Mar 2026 12:45:08 +0200 Subject: [PATCH] Jenkinsfile - set 'Qt6 installation dir'... still --- Jenkinsfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 958117f..7b58895 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,12 +16,15 @@ pipeline { } } stage('Build') { + environment { + Qt6Dir=/home/k4/Qt/6.10.2/lib/cmake + } steps { // Build the project using the generated files echo "Build project" - sh 'export Qt6Dir=/home/k4/Qt/6.10.2/lib/cmake' + // sh 'export Qt6Dir=/home/k4/Qt/6.10.2/lib/cmake' echo "See what's in the environment" - sh 'env | grep Qt' + sh "env | grep Qt" sh 'cmake -S . -B build -DCMAKE_BUILD_TYPE=Release' // echo "See localbuild says on the environment"