mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 08:28:02 -05:00
15 lines
653 B
Bash
Executable File
15 lines
653 B
Bash
Executable File
#!/bin/bash
|
|
set -uex
|
|
${GOROOT}/bin/bin/gocover-cobertura < coverage.bridge.txt > coverage.bridge.xml
|
|
${GOROOT}/bin/bin/gocover-cobertura < coverage.db.txt > coverage.db.xml
|
|
${GOROOT}/bin/bin/gocover-cobertura < coverage.common.txt > coverage.common.xml
|
|
${GOROOT}/bin/bin/gocover-cobertura < coverage.coordinator.txt > coverage.coordinator.xml
|
|
#${GOROOT}/bin/bin/gocover-cobertura < coverage.integration.txt > coverage.integration.xml
|
|
|
|
npx cobertura-merge -o cobertura.xml \
|
|
package1=coverage.bridge.xml \
|
|
package2=coverage.db.xml \
|
|
package3=coverage.common.xml \
|
|
package4=coverage.coordinator.xml
|
|
# package5=coverage.integration.xml
|