Adding missing spaces in test metrics command string

This commit is contained in:
evanchia
2021-04-21 13:28:12 -07:00
parent 7bfde0ddba
commit efacc3c8bb
+2 -2
View File
@@ -360,9 +360,9 @@ def TestMetrics(Map options, String workspace, String branchName, String repoNam
userRemoteConfigs: [[url: "${env.MARS_REPO}", name: 'mars', credentialsId: "${env.GITHUB_USER}"]]
]
withCredentials([usernamePassword(credentialsId: "${env.SERVICE_USER}", passwordVariable: 'apitoken', usernameVariable: 'username')]) {
def command = "${options.PYTHON_DIR}/python.cmd -u mars/scripts/python/ctest_test_metric_scraper.py" +
def command = "${options.PYTHON_DIR}/python.cmd -u mars/scripts/python/ctest_test_metric_scraper.py " +
"-e jenkins.creds.user ${username} -e jenkins.creds.pass ${apitoken} " +
"-e jenkins.base_url ${env.JENKINS_URL}" +
"-e jenkins.base_url ${env.JENKINS_URL} " +
"${cmakeBuildDir} ${branchName} %BUILD_NUMBER% AR ${configuration} ${repoName} "
bat label: "Publishing ${buildJobName} Test Metrics",
script: command