diff --git a/Jenkinsfile b/Jenkinsfile index d7d290e..04400cf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { stage('Build') { steps { - bat '"C:\\ProgramData\\Jenkins\\.jenkins\\workspace\\exx\\x64\\Debug\\test_repos.exe" --gtest_output="xml:C:\\ProgramData\\Jenkins\\.jenkins\\workspace\\exx\\x64\\Debug\\"' + bat '"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Current\\Bin\\MSBuild.exe" test_repos.sln /p:Configuration=Release' } } @@ -18,7 +18,7 @@ pipeline { stage('Test') { steps { - bat 'x64/Debug/test_repos.exe --gtest_output="xml:x64/Debug/"' + bat '"C:\\ProgramData\\Jenkins\\.jenkins\\workspace\\exx\\x64\\Debug\\test_repos.exe" --gtest_output="xml:C:\\ProgramData\\Jenkins\\.jenkins\\workspace\\exx\\x64\\Debug\\"' } } stage('Publish Test Results') {