improve jenkins
All checks were successful
Intrepid/Prometeu/Runtime/pipeline/pr-master This commit looks good
Intrepid/Prometeu/Runtime/pipeline/head This commit looks good

This commit is contained in:
bQUARKz 2026-04-08 09:13:46 +01:00
parent 1769f56bcb
commit a4b0006745
Signed by: bquarkz
SSH Key Fingerprint: SHA256:Z7dgqoglWwoK6j6u4QC87OveEq74WOhFN+gitsxtkf8

View File

@ -2,6 +2,9 @@ pipeline {
agent any
environment {
CARGO_HOME = '/var/jenkins_home/.cargo'
CARGO_TARGET_DIR = 'target'
CARGO_TERM_COLOR = 'always'
MIN_LINES = '60'
@ -12,7 +15,6 @@ pipeline {
stages {
stage('Build') {
steps {
script {
sh '''
set -eux
make ci cobertura
@ -50,7 +52,6 @@ pipeline {
echo "Coverage gate passed."
'''
}
// withChecks(name: 'Test', includeStage: true) {
// sh '''
// set -eux
@ -77,7 +78,6 @@ pipeline {
stage('Reports') {
steps {
script {
publishHTML(target: [
allowMissing: false,
alwaysLinkToLastBuild: true,
@ -87,7 +87,8 @@ pipeline {
reportName: 'Rust Coverage HTML',
reportTitles: 'Coverage Report'
])
}
archiveArtifacts artifacts: 'target/llvm-cov/**', fingerprint: true
}
} // Reports
}