diff --git a/Jenkinsfile b/Jenkinsfile index 7aa6b22..070112e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,13 +10,13 @@ pipeline { stage('Build') { steps { - g++ main.cpp sort.h sort.cpp -o test -lgtest -pthread + sh "g++ main.cpp sort.h sort.cpp -o test -lgtest -pthread" } } stage('Test') { steps { - test --gtest_output=xml:test_report.xml + sh "test --gtest_output=xml:test_report.xml" } } }