From b6207c199a49015e0487777e868cd89c5a00bd07 Mon Sep 17 00:00:00 2001 From: rhinemann Date: Fri, 27 Dec 2024 19:31:34 +0200 Subject: [PATCH] Jenkinsfile updated. --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" } } }