Fixing testing

This commit is contained in:
retropikzel 2025-02-28 14:08:26 +02:00
parent 9c6e59bfa3
commit 91b1cff7f6
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -15,7 +15,7 @@ pipeline {
stage('Build test libraries') { stage('Build test libraries') {
steps { steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make libstest.so libtest.a' sh 'make libtest.so libtest.a'
} }
} }
} }

View File

@ -15,7 +15,7 @@ pipeline {
stage('Build test libraries') { stage('Build test libraries') {
steps { steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make libstest.so libtest.a' sh 'make libtest.so libtest.a'
} }
} }
} }