changes Jenkins step name

This commit is contained in:
Eyck Jentzsch 2024-04-06 12:50:52 +02:00
parent 3a8a675bfd
commit 0992cefeb8
1 changed files with 1 additions and 2 deletions

3
Jenkinsfile vendored
View File

@ -90,7 +90,7 @@ pipeline {
} }
} }
// //
stage('CLang') { stage('Format check') {
agent {docker { image 'ubuntu-riscv' } } agent {docker { image 'ubuntu-riscv' } }
stages { stages {
stage('Checkout') { steps { checkout_project() }} stage('Checkout') { steps { checkout_project() }}
@ -98,7 +98,6 @@ pipeline {
stage('Build & check format') { steps { stage('Build & check format') { steps {
sh''' sh'''
cmake -S . -B build cmake -S . -B build
cmake --build build -j12
cmake --build build --target format-check cmake --build build --target format-check
''' '''
}} }}