adds RockyLinux8 to Jenkins

This commit is contained in:
Eyck Jentzsch 2023-12-02 11:08:59 +01:00
parent 993324f130
commit 833b12752a
1 changed files with 9 additions and 1 deletions

10
Jenkinsfile vendored
View File

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