Jenkinsfile updated.
This commit is contained in:
parent
4a14c120e8
commit
54802ebcd9
|
@ -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') ])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue