pipeline fixes
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2024-12-02 13:41:30 -05:00
parent b0aecef1ed
commit 1dd1f31082

4
Jenkinsfile vendored
View File

@ -89,7 +89,7 @@ pipeline {
}
}
}
stage('Test') {
stage('Test (Native)') {
steps {
script {
catchError {
@ -99,7 +99,7 @@ pipeline {
}
post {
always {
junit testResults: 'target/surefire-reports/*.xml', keepLongStdio: true, testDataPublishers: [[$class:'AttachmentPublisher']]
junit testResults: 'out/build/default/Testing/**.xml', keepLongStdio: true, testDataPublishers: [[$class:'AttachmentPublisher']]
}
}
}