Jenkinsfile updated.

This commit is contained in:
rhinemann 2024-12-27 19:53:21 +02:00
parent 4a14c120e8
commit 54802ebcd9
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -10,7 +10,7 @@ pipeline {
stage('Build') { stage('Build') {
steps { steps {
sh "g++ main.cpp sort.h sort.cpp -o test -lgtest -pthread" sh "g++ main.cpp sort.h sort.cpp -o test -w -lgtest -pthread"
} }
} }
@ -23,7 +23,7 @@ pipeline {
post { post {
always { always {
xunit (tools: [ GoogleTest(pattern: './test_report.xml') ]) xunit (tools: [ GoogleTest(pattern: 'test_report.xml') ])
} }
} }
} }