From 1c7310d37a0805981b83377aed377fe3a31a4db2 Mon Sep 17 00:00:00 2001 From: "E. Scott Daniels" Date: Mon, 27 Apr 2020 10:30:45 -0400 Subject: [PATCH] Properly set RMR test args for sonar job The job to generate sonar data in the RMR repo needs to only run the unit tests. This change sets the arguments passed to make to be just "-R unit" which will execute only the unit tests to generate the gcov files. The extra overhead of building packages and running application tests is avoided. Signed-off-by: E. Scott Daniels Change-Id: I9b527d167385c5f389d6793229adc08ef5366424 --- jjb/ric-plt-lib-rmr/ric-plt-lib-rmr.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jjb/ric-plt-lib-rmr/ric-plt-lib-rmr.yaml b/jjb/ric-plt-lib-rmr/ric-plt-lib-rmr.yaml index 32444868..1fd4ebd0 100644 --- a/jjb/ric-plt-lib-rmr/ric-plt-lib-rmr.yaml +++ b/jjb/ric-plt-lib-rmr/ric-plt-lib-rmr.yaml @@ -100,7 +100,7 @@ name: ric-plt-lib-rmr-c-sonarqube <<: *rmr_common <<: *rmr_c_common - make-opts: test ARGS=-V + make-opts: test ARGS="-R unit" sonar-project-file: "" sonar-properties: | sonar.login={sonarcloud_api_token} -- 2.16.6