update jenkinsfile
Some checks are pending
Test / Build

This commit is contained in:
bQUARKz 2026-04-08 06:58:20 +01:00
parent 88c75e43ae
commit 44ebae30a9
Signed by: bquarkz
SSH Key Fingerprint: SHA256:Z7dgqoglWwoK6j6u4QC87OveEq74WOhFN+gitsxtkf8

View File

@ -25,6 +25,7 @@ pipeline {
]) ])
} }
} // Test } // Test
stage('Coverage') { stage('Coverage') {
steps { steps {
sh ''' sh '''
@ -37,6 +38,8 @@ pipeline {
enabledForFailure: true, enabledForFailure: true,
failOnError: true, failOnError: true,
checksAnnotationScope: 'MODIFIED_LINES', checksAnnotationScope: 'MODIFIED_LINES',
id: 'rust-coverage',
name: 'Rust Coverage',
checksName: 'Rust Coverage', checksName: 'Rust Coverage',
qualityGates: [ qualityGates: [
[metric: 'LINE', baseline: 'MODIFIED_LINES', threshold: 20.0], [metric: 'LINE', baseline: 'MODIFIED_LINES', threshold: 20.0],
@ -47,7 +50,6 @@ pipeline {
} }
} // Cobertura } // Cobertura
} }
}
post { post {
always { always {