首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >上载到Prow CI中的Codacy时,邮件标头值中存在非法字符

上载到Prow CI中的Codacy时,邮件标头值中存在非法字符
EN

Stack Overflow用户
提问于 2021-05-19 21:44:10
回答 1查看 27关注 0票数 0

我有我的Kotlin项目的jacoco代码覆盖率报告,我正在将其上传到Codacy。

我正在使用codacy-coverage-Reporter7.1.0并使用以下gradle任务来上传报告。

代码语言:javascript
复制
task("uploadTestCoverageReportToCodacy", JavaExec::class) {
    dependsOn("codeCoverageReport")
    main = "com.codacy.CodacyCoverageReporter"
    classpath = codacy
    args = arrayListOf(
            "report",
            "-l",
            "Kotlin",
            "-r",
            "$buildDir/reports/jacoco/jacocoTestReport.xml")
}

任务"codeCoverageReport“已成功完成,并且我已在PROW CI中配置了CODACY_PROJECT_TOKEN。

我面临的问题是以下信息:

代码语言:javascript
复制
Exception in thread "main" java.lang.IllegalArgumentException: Illegal character(s) in message header value: <CODACY_PROJECT_TOKEN> (the token value)
at java.base/sun.net.www.protocol.http.HttpURLConnection.checkMessageHeader(HttpURLConnection.java:559)
    at java.base/sun.net.www.protocol.http.HttpURLConnection.isExternalMessageHeaderAllowed(HttpURLConnection.java:494)
    at java.base/sun.net.www.protocol.http.HttpURLConnection.setRequestProperty(HttpURLConnection.java:3174)
    at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.setRequestProperty(HttpsURLConnectionImpl.java:312)
    at scalaj.http.HttpRequest.$anonfun$doConnection$3(Http.scala:359)
    at scalaj.http.HttpRequest.$anonfun$doConnection$3$adapted(Http.scala:358)
    at scala.collection.immutable.List.foreach(List.scala:392)
    at scalaj.http.HttpRequest.doConnection(Http.scala:358)
    at scalaj.http.HttpRequest.exec(Http.scala:343)
    at scalaj.http.HttpRequest.asString(Http.scala:491)
    at com.codacy.api.client.CodacyClient.post(CodacyClient.scala:71)
    at com.codacy.api.service.CoverageServices.postRequest(CoverageServices.scala:91)
    at com.codacy.api.service.CoverageServices.sendReport(CoverageServices.scala:27)
    at com.codacy.rules.ReportRules.sendReport(ReportRules.scala:128)
    at com.codacy.rules.ReportRules.$anonfun$codacyCoverage$8(ReportRules.scala:54)
    at scala.util.Either.flatMap(Either.scala:341)
    at com.codacy.rules.ReportRules.$anonfun$codacyCoverage$7(ReportRules.scala:53)
    at scala.util.Either.flatMap(Either.scala:341)
    at com.codacy.rules.ReportRules.$anonfun$codacyCoverage$6(ReportRules.scala:52)
    at scala.util.Either.flatMap(Either.scala:341)
    at com.codacy.rules.ReportRules.$anonfun$codacyCoverage$4(ReportRules.scala:51)
    at scala.util.Either.flatMap(Either.scala:341)
    at com.codacy.rules.ReportRules.$anonfun$codacyCoverage$3(ReportRules.scala:50)
    at scala.collection.immutable.List.map(List.scala:286)
    at com.codacy.rules.ReportRules.$anonfun$codacyCoverage$2(ReportRules.scala:47)
    at scala.util.Either.flatMap(Either.scala:341)
    at com.codacy.rules.ReportRules.$anonfun$codacyCoverage$1(ReportRules.scala:40)
    at com.codacy.rules.ReportRules.$anonfun$withCommitUUID$4(ReportRules.scala:267)
    at com.codacy.rules.ReportRules.$anonfun$withCommitUUID$4$adapted(ReportRules.scala:267)
    at scala.util.Either.flatMap(Either.scala:341)
    at com.codacy.rules.ReportRules.withCommitUUID(ReportRules.scala:267)
    at com.codacy.rules.ReportRules.codacyCoverage(ReportRules.scala:35)
    at com.codacy.CodacyCoverageReporter$.$anonfun$sendReport$1(CodacyCoverageReporter.scala:41)
    at scala.util.Either.flatMap(Either.scala:341)
    at com.codacy.CodacyCoverageReporter$.sendReport(CodacyCoverageReporter.scala:33)
    at com.codacy.CodacyCoverageReporter$.run(CodacyCoverageReporter.scala:18)
    at com.codacy.configuration.parser.ConfigurationParsingApp.run(ConfigurationParser.scala:13)
    at com.codacy.configuration.parser.ConfigurationParsingApp.run(ConfigurationParser.scala:11)
    at caseapp.CommandAppWithPreCommand.$anonfun$main$1(CommandAppWithPreCommand.scala:97)
    at caseapp.CommandAppWithPreCommand.$anonfun$main$1$adapted(CommandAppWithPreCommand.scala:82)
    at scala.Option.foreach(Option.scala:407)
    at caseapp.CommandAppWithPreCommand.main(CommandAppWithPreCommand.scala:82)
    at com.codacy.CodacyCoverageReporter.main(CodacyCoverageReporter.scala)

我已经仔细检查了codacy标记是否正确,没有任何前导空格或尾随空格或任何奇怪的字符。

有人知道为什么上传到codacy会有这个问题吗?请注意,此gradle任务在本地计算机上运行良好,但它在CI中产生了问题。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2021-05-20 20:56:03

CI正在使用新行注入令牌。我用以下方法解决了这个问题:

代码语言:javascript
复制
task("uploadTestCoverageReportToCodacy", JavaExec::class) {
    dependsOn("codeCoverageReport")
    main = "com.codacy.CodacyCoverageReporter"
    classpath = codacy
    args = arrayListOf(
            "report",
            "-t",
            System.getenv("CODACY_PROJECT_TOKEN")?.trim() ?: "",
            "-l",
            "Kotlin",
            "-r",
            "$buildDir/reports/jacoco/jacocoTestReport.xml")
}
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/67604494

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档