Compare commits
No commits in common. "3d3607d62768b2be039c7254db26949afc065d36" and "797d731eb0ca1f92290f6ec1633ad73fcd95e082" have entirely different histories.
3d3607d627
...
797d731eb0
|
@ -8,4 +8,4 @@ add_executable(code main.cpp
|
|||
sort.h
|
||||
)
|
||||
|
||||
target_link_libraries(code gtest pthread)
|
||||
target_link_libraries(code gtest gmock pthread)
|
||||
|
|
|
@ -1,29 +0,0 @@
|
|||
pipeline {
|
||||
agent any
|
||||
|
||||
stages {
|
||||
stage('Checkout') {
|
||||
steps {
|
||||
git url: 'http://10.1.1.1:3000/Rhinemann/sys-prog-coursework-lab-4.git', credentialsId: 'access_for_jenkins'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Build') {
|
||||
steps {
|
||||
g++ main.cpp sort.h sort.cpp -o test -lgtest -pthread
|
||||
}
|
||||
}
|
||||
|
||||
stage('Test') {
|
||||
steps {
|
||||
test --gtest_output=xml:test_report.xml
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
post {
|
||||
always {
|
||||
xunit (tools: [ GoogleTest(pattern: 'test_report.xml') ])
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue