summaryrefslogtreecommitdiff
path: root/.github/checksum.sh
diff options
context:
space:
mode:
authorHarsh Shandilya <msfjarvis@gmail.com>2020-05-01 15:20:57 +0530
committerGitHub <noreply@github.com>2020-05-01 15:20:57 +0530
commit9696af4024e2b74c5a893883631fa70b97aaf4ee (patch)
tree0b42be5de63dc47e403261d944dbe32a1070ce85 /.github/checksum.sh
parent92131bc6d4eb0dc6bfc77df5b23ec74d4f98dc29 (diff)
Update Actions caching and add workflow to validate Gradle wrapper (#754)
Diffstat (limited to '.github/checksum.sh')
-rwxr-xr-x.github/checksum.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/checksum.sh b/.github/checksum.sh
new file mode 100755
index 00000000..a1c7791a
--- /dev/null
+++ b/.github/checksum.sh
@@ -0,0 +1,23 @@
+#!/usr/bin/env bash
+RESULT_FILE=$1
+
+if [ -f $RESULT_FILE ]; then
+ rm $RESULT_FILE
+fi
+touch $RESULT_FILE
+
+checksum_file() {
+ echo $(sha256sum $1 | awk '{print $1}')
+}
+
+FILES=()
+while read -r -d ''; do
+ FILES+=("$REPLY")
+done < <(find . -type f \( -name "build.gradle*" -o -name "dependencies.gradle" -o -name "gradle-wrapper.properties" \) -print0)
+
+# Loop through files and append MD5 to result file
+for FILE in ${FILES[@]}; do
+ echo $(checksum_file $FILE) >> $RESULT_FILE
+done
+# Now sort the file so that it is
+sort $RESULT_FILE -o $RESULT_FILE