diff --git a/Jenkinsfile b/Jenkinsfile index 9e3d9c4..07eacc9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -89,6 +89,21 @@ pipeline { stage('Build & test') { steps { build_n_test_project() }} } } + // + stage('CLang') { + agent {docker { image 'ubuntu-riscv' } } + stages { + stage('Checkout') { steps { checkout_project() }} + stage('Setup') { steps { setup_conan() }} + stage('Build & check format') { steps { + sh''' + cmake -S . -B build + cmake --build build -j12 + cmake --build build --target format-check + ''' + }} + } + } } } }