adds RockyLinux8 to Jenkins
This commit is contained in:
parent
993324f130
commit
833b12752a
|
@ -34,7 +34,7 @@ void build_tgc_vp() {
|
||||||
sh("conan profile new default --detect --force")
|
sh("conan profile new default --detect --force")
|
||||||
sh("conan profile update settings.compiler.libcxx=libstdc++11 default")
|
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("conan remote add minres https://git.minres.com/api/packages/Tooling/conan --force")
|
||||||
sh("cmake --version")
|
sh("conan --version && cmake --version")
|
||||||
}
|
}
|
||||||
catch (exc) {
|
catch (exc) {
|
||||||
echo 'Conan configured'
|
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()}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue