changes conan variable name to use the conan2 one (CONAN_HOME instead of CONAN_USER_HOME)

This commit is contained in:
Eyck Jentzsch 2025-01-29 07:59:59 +01:00
parent b63030b154
commit 1b99544779

6
Jenkinsfile vendored
View File

@ -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() }}