File tree Expand file tree Collapse file tree 3 files changed +0
-18
lines changed
Expand file tree Collapse file tree 3 files changed +0
-18
lines changed Original file line number Diff line number Diff line change 3434 name : Ballerina Internal Log
3535 path : regex-ballerina/ballerina-internal.log
3636 if-no-files-found : ignore
37- - name : Archive Code Coverage JSON
38- uses : actions/upload-artifact@v2
39- with :
40- name : Code Coverage JSON
41- path : regex-ballerina/target/report/test_results.json
42- if-no-files-found : ignore
4337 - name : Dispatch Dependent Module Builds
4438 if : github.event.action != 'stdlib-publish-snapshot'
4539 run : |
Original file line number Diff line number Diff line change 2929 name : Ballerina Internal Log
3030 path : regex-ballerina/ballerina-internal.log
3131 if-no-files-found : ignore
32- - name : Archive Code Coverage JSON
33- uses : actions/upload-artifact@v2
34- with :
35- name : Code Coverage JSON
36- path : regex-ballerina/target/report/test_results.json
37- if-no-files-found : ignore
3832
3933 windows-build :
4034
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ def ballerinaConfigFile = new File("$project.projectDir/Ballerina.toml")
2727def artifactBallerinaDocs = file(" $project . projectDir /build/docs_parent/" )
2828def artifactCacheParent = file(" $project . projectDir /build/cache_parent/" )
2929def artifactLibParent = file(" $project . projectDir /build/lib_parent/" )
30- def artifactCodeCoverageReport = file(" $project . projectDir /target/cache/tests_cache/coverage/ballerina.exec" )
3130def artifactTestableJar = file(" $project . projectDir /target/cache/${ packageOrg} /${ packageName} /${ tomlVersion} /java11/" )
3231def ballerinaCentralAccessToken = System . getenv(' BALLERINA_CENTRAL_ACCESS_TOKEN' )
3332def originalConfig = ballerinaConfigFile. text
@@ -209,15 +208,10 @@ task createArtifactZip(type: Zip) {
209208 from ballerinaBuild
210209}
211210
212- def getCheckedOutGitCommitHash () {
213- ' git rev-parse --verify --short HEAD' . execute(). text. trim()
214- }
215-
216211publishing {
217212 publications {
218213 maven(MavenPublication ) {
219214 artifact source : createArtifactZip, extension : ' zip'
220- artifact source : artifactCodeCoverageReport, classifier : ' jacoco'
221215 }
222216 }
223217
You can’t perform that action at this time.
0 commit comments