Jenkins pipeline for CUDA builds to include junit post build action

Signed-off-by: brian <brian@brutex.de>
CUDA12
Brian Rosenberger 2023-08-10 14:19:09 +02:00
parent a6c4a16d9a
commit d40c044df4
2 changed files with 12 additions and 0 deletions

View File

@ -59,4 +59,10 @@ pipeline {
}
}
}
post {
always {
junit '**/build/test-results/**/*.xml'
}
}
}

View File

@ -72,4 +72,10 @@ pipeline {
}
}
}
post {
always {
junit '**/build/test-results/**/*.xml'
}
}
}