Use eskatos/gradle-command-action instead of manually handling caching

(cherry picked from commit e1eb030b18)

# Conflicts:
#	.github/workflows/build_check.yml
This commit is contained in:
arkon
2020-10-08 21:24:59 -04:00
committed by Jobobby04
parent f0e2367071
commit 6dc55a3fc4
2 changed files with 6 additions and 37 deletions
-23
View File
@@ -1,23 +0,0 @@
#!/bin/bash
RESULT_FILE=$1
if [ -f $RESULT_FILE ]; then
rm $RESULT_FILE
fi
touch $RESULT_FILE
checksum_file() {
echo $(openssl md5 $1 | awk '{print $2}')
}
FILES=()
while read -r -d ''; do
FILES+=("$REPLY")
done < <(find . -type f \( -name "build.gradle*" -o -name "Dependencies.kt" -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