removes CentOS 7 from Jenkins as OS it not supported anymore
This commit is contained in:
parent
5be69cfa75
commit
2c18dd4d17
20
Jenkinsfile
vendored
20
Jenkinsfile
vendored
@ -58,24 +58,6 @@ pipeline {
|
|||||||
stage('Build & test') { steps { build_n_test_project() }}
|
stage('Build & test') { steps { build_n_test_project() }}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('centos7') {
|
|
||||||
agent {docker { image 'centos7' } }
|
|
||||||
stages {
|
|
||||||
stage('Checkout') { steps { checkout_project() }}
|
|
||||||
stage('Build & test') { steps {
|
|
||||||
sh'''
|
|
||||||
python3 -mvenv .venv
|
|
||||||
. .venv/bin/activate
|
|
||||||
pip3 install -r requirements.txt
|
|
||||||
conan profile detect --force -vquiet
|
|
||||||
conan install --requires 'b2/[*]' --build='*'
|
|
||||||
cmake -S . -B build --preset Release
|
|
||||||
cmake --build build -j12
|
|
||||||
cmake --build build --target test
|
|
||||||
'''
|
|
||||||
}}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('rockylinux8') {
|
stage('rockylinux8') {
|
||||||
agent {docker { image 'rockylinux8' } }
|
agent {docker { image 'rockylinux8' } }
|
||||||
stages {
|
stages {
|
||||||
@ -84,7 +66,7 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Format check') {
|
stage('Format check') {
|
||||||
agent {docker { image 'ubuntu-riscv' } }
|
agent {docker { image 'ubuntu-22.04' } }
|
||||||
stages {
|
stages {
|
||||||
stage('Checkout') { steps { checkout_project() }}
|
stage('Checkout') { steps { checkout_project() }}
|
||||||
stage('Build & check format') { steps {
|
stage('Build & check format') { steps {
|
||||||
|
Loading…
Reference in New Issue
Block a user