diff --git a/Jenkinsfile b/Jenkinsfile
index 812104fac61a88f390d9f054ab862b525783059d..f70eaedc93c6650ab082296bfa6607430173a18a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -242,15 +242,11 @@ pipeline {
               configure {
                 cmakeOptions =
                   "-DBUILD_SHARED_LIBS=${build_shared} " +
-                  '-DOGS_CPU_ARCHITECTURE=generic ' +
-                  '-DOGS_COVERAGE=ON '
+                  '-DOGS_CPU_ARCHITECTURE=generic '
                 config = 'Debug'
               }
               build { }
-              build { target = 'testrunner_coverage_cobertura' }
-              dir('build') {
-                sh "curl -s https://codecov.io/bash | bash -s - -f *_cobertura.xml"
-              }
+              build { target = 'tests' }
             }
           }
           post {