Skip to content

Commit bbf999a

Browse files
committed
setup for remote testing
1 parent 771898c commit bbf999a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/artifact-size-metrics/utils/build-and-upload/calculate_metrics.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ calculateArtifactSizes() {
1414
# Find all JARs (exclude sources and javadoc)
1515
# TODO: Calculate KN artifacts sizes
1616
find "$input_dir" -type f -name "*.jar" ! -name "*-sources.jar" ! -name "*-javadoc.jar" | while read -r jar; do
17-
# size=$(stat -c%s "$jar")
18-
size=$(stat -f%z "$jar") # TODO: Remove when done testing
17+
size=$(stat -c%s "$jar")
18+
# size=$(stat -f%z "$jar") # TODO: Remove when done testing
1919

2020
# remove dir path, version, optional timestamp, and .jar
2121
artifact=$(basename "$jar")

0 commit comments

Comments
 (0)