[Scummvm-git-logs] scummvm master -> 6bd740d35e2be90e5fb22d00d2398d6c19f9e142
sev-
noreply at scummvm.org
Wed May 22 20:45:12 UTC 2024
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
6bd740d35e DEVTOOLS: Added bagel.dat and nancy.dat prerelease checks
Commit: 6bd740d35e2be90e5fb22d00d2398d6c19f9e142
https://github.com/scummvm/scummvm/commit/6bd740d35e2be90e5fb22d00d2398d6c19f9e142
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2024-05-22T22:44:59+02:00
Commit Message:
DEVTOOLS: Added bagel.dat and nancy.dat prerelease checks
Changed paths:
devtools/release-checks.sh
diff --git a/devtools/release-checks.sh b/devtools/release-checks.sh
index eceeeb5a3c2..e20f0a6c3f3 100755
--- a/devtools/release-checks.sh
+++ b/devtools/release-checks.sh
@@ -517,6 +517,44 @@ else
fi
+###########
+# Bagel engine
+###########
+
+echo_n "Checking bagel.dat..."
+
+fileDate=`git log -1 dists/engine-data/bagel.dat | grep Date | sed 's/Date: //'`
+
+num_lines=`git -P log --oneline "--since=$fileDate" devtools/create_bagel/files | wc -l`
+
+if [ "$num_lines" -ne "0" ]; then
+ echo -e "$num_lines unprocessed commits. ${RED}Run 'cd devtools/create_bagel/files; zip -r9 ../../../dists/engine-data/bagel.dat .'${NC}"
+
+ failPlus
+else
+ echoOk
+fi
+
+
+###########
+# Nancy engine
+###########
+
+echo_n "Checking nancy.dat..."
+
+fileDate=`git log -1 dists/engine-data/nancy.dat | grep Date | sed 's/Date: //'`
+
+num_lines=`git -P log --oneline "--since=$fileDate" devtools/create_nancy/files | wc -l`
+
+if [ "$num_lines" -ne "0" ]; then
+ echo -e "$num_lines unprocessed commits. ${RED}Run 'make devtools/create_nancy;cd devtools/create_nancy;./create_nancy;cp nancy.dat ../../dists/engine-data'${NC}"
+
+ failPlus
+else
+ echoOk
+fi
+
+
###########
# Ultima engine
###########
More information about the Scummvm-git-logs
mailing list