From 1b99544779c7aa7fd99ff40ab68a7874d7f32e2d Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Wed, 29 Jan 2025 07:59:59 +0100 Subject: [PATCH] changes conan variable name to use the conan2 one (CONAN_HOME instead of CONAN_USER_HOME) --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3810729..737d0d2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -54,7 +54,7 @@ pipeline { stage('ubuntu-22.04') { agent {docker { image 'ubuntu-22.04' - args ' -e CONAN_USER_HOME=/var/jenkins_home/workspace/conan-jammy' + args ' -e CONAN_HOME=/var/jenkins_home/workspace/conan-jammy' } } stages { stage('Checkout') { steps { checkout_project() }} @@ -64,7 +64,7 @@ pipeline { stage('rockylinux8') { agent {docker { image 'rockylinux8' - args ' -e CONAN_USER_HOME=/var/jenkins_home/workspace/conan-rocky8' + args ' -e CONAN_HOME=/var/jenkins_home/workspace/conan-rocky8' } } stages { stage('Checkout') { steps { checkout_project() }} @@ -74,7 +74,7 @@ pipeline { stage('Format check') { agent {docker { image 'ubuntu-22.04' - args ' -e CONAN_USER_HOME=/var/jenkins_home/workspace/conan-jammy' + args ' -e CONAN_HOME=/var/jenkins_home/workspace/conan-jammy' } } stages { stage('Checkout') { steps { checkout_project() }}