diff --git a/.ci/Jenkinsfile-SITL_tests b/.ci/Jenkinsfile-SITL_tests index 6b7a166272..00d55a6bbd 100644 --- a/.ci/Jenkinsfile-SITL_tests +++ b/.ci/Jenkinsfile-SITL_tests @@ -47,7 +47,7 @@ pipeline { stage('unit tests') { steps { sh 'export' - sh 'make px4_sitl_default test_results_junit' + sh 'make px4_sitl_test test_results_junit' junit 'build/px4_sitl_default/JUnitTestResults.xml' } } @@ -176,7 +176,7 @@ pipeline { steps { sh 'export' sh 'make distclean' - sh 'make px4_sitl_default test_results_junit' + sh 'make px4_sitl_test test_results_junit' withCredentials([string(credentialsId: 'FIRMWARE_CODECOV_TOKEN', variable: 'CODECOV_TOKEN')]) { sh 'curl -s https://codecov.io/bash | bash -s - -F unittest' }