From 833b12752a8a98c141726386c9d0a1495c39d125 Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Sat, 2 Dec 2023 11:08:59 +0100 Subject: [PATCH] adds RockyLinux8 to Jenkins --- Jenkinsfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7bd630d..2fbc01b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -34,7 +34,7 @@ void build_tgc_vp() { sh("conan profile new default --detect --force") sh("conan profile update settings.compiler.libcxx=libstdc++11 default") sh("conan remote add minres https://git.minres.com/api/packages/Tooling/conan --force") - sh("cmake --version") + sh("conan --version && cmake --version") } catch (exc) { echo 'Conan configured' @@ -86,6 +86,14 @@ pipeline { } } } + stage('RockyLinux8'){ + agent {docker { image 'rocky8' } } + stages { + stage('Checkout on Ubuntu') { steps {checkout_tgc_vp()}} + stage('Build') { steps {build_tgc_vp()} + } + } + } } } }