Skip to content

Commit

Permalink
adjust startime to long (#622)
Browse files Browse the repository at this point in the history
  • Loading branch information
MxEh-TT committed Nov 29, 2023
1 parent a8e6a49 commit f46de8a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Jenkinsfile.internal
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ pipeline {
mvn 'jacoco:prepare-agent surefire:test -Dsurefire.useFile=false'
junit 'target/surefire-reports/TEST-*.xml'
withEnv(["TEST_LEVEL = Unit"]) {
Xml2TG("${currentBuild.startTimeInMillis}", "target/surefire-reports/", "JUnit", "${pipeline_report_dir}")
startTime = currentBuild.startTimeInMillis
Xml2TG((long) startTime, "target/surefire-reports/", "JUnit", "${pipeline_report_dir}")
}
jacoco exclusionPattern: '**/Messages.class', execPattern: 'target/jacoco.exec'
}
Expand Down

0 comments on commit f46de8a

Please sign in to comment.