From c3cf5e68220ab8fa461f3f840a996fc01487ab6a Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Sat, 4 Aug 2018 13:10:38 -0400 Subject: [PATCH] Jenkins codecov.io add Flags for unit and mission tests --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8fc752c9a2..7e9f4f797f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -172,7 +172,7 @@ pipeline { sh 'make distclean; rm -rf .ros; rm -rf .gazebo' sh 'ulimit -c unlimited; make tests_mission_coverage' withCredentials([string(credentialsId: 'FIRMWARE_CODECOV_TOKEN', variable: 'CODECOV_TOKEN')]) { - sh 'curl -s https://codecov.io/bash | bash -s' + sh 'curl -s https://codecov.io/bash | bash -s - -F mission' } sh 'make distclean' } @@ -190,7 +190,7 @@ pipeline { sh 'make distclean' sh 'ulimit -c unlimited; make tests_coverage' withCredentials([string(credentialsId: 'FIRMWARE_CODECOV_TOKEN', variable: 'CODECOV_TOKEN')]) { - sh 'curl -s https://codecov.io/bash | bash -s' + sh 'curl -s https://codecov.io/bash | bash -s - -F unittests' } sh 'make distclean' }