Print when starting/finishing the sqlite updates and when the caching step starts.

This commit is contained in:
Pentarctagon 2020-09-02 12:47:34 -05:00
parent cd34e2d8ae
commit 10c60fd2e3
2 changed files with 5 additions and 0 deletions

View file

@ -67,6 +67,9 @@ install:
script:
- ./utils/travis/steps/script.sh
before_cache:
- echo "Starting caching..."
notifications:
email: false
irc:

View file

@ -53,11 +53,13 @@ elif [ "$TRAVIS_OS_NAME" = "windows" ]; then
fi
fi
echo "Starting sqlite updates..."
if [ "$BUILD_RET" != "0" ]; then
sqlite3 "projectfiles/$IMAGE/$CFG/filehashes.sqlite" "update FILES set MD5 = OLD_MD5, OLD_MD5 = '-' where OLD_MD5 != '-'"
else
sqlite3 "projectfiles/$IMAGE/$CFG/filehashes.sqlite" "update FILES set OLD_MD5 = '-' where OLD_MD5 != '-'"
fi
echo "Finished sqlite updates!"
if [ "$CFG" == "Release" ] && [ "$BUILD_RET" == "0" ]; then
if (( SECONDS > 60*30 )); then