aboutsummaryrefslogtreecommitdiff
path: root/contrib/check_updates.sh
AgeCommit message (Collapse)Author
2020-04-04CI/Circle CI: Prepare master for circle ci (#24386)funjoker
* Circle CI (#22982) * Build/CI: Add Circle CI * Fix travis (cherry picked from commit cb6439bacd8b5d10ef2a4d2eb4e8ab2f950e4ffd) * CI/CircleCI: Add parallel no-pch build (cherry picked from commit 33c58b4aaf4afc8ca13c1d07c65d66e6beb6bedb) * CI/CircleCI: Use ccache for nopch (cherry picked from commit 6bcf5c64c489175da41acf7739f156319a00f5f9) * CI/CircleCI: Change base docker image to custom-built trinitycore one (cherry picked from commit 37beeb1282c24fc584f5f524279df408779c5d5b) * CI/CircleCI: Switch to Ubuntu 18.10 (cherry picked from commit 6dfb4fde07082498a264ca0802ebdeb0bf3fa994) * CI/CircleCI: Switch to Ubuntu 19.04 (cherry picked from commit 9009c82a8db2bdb433cba17820af8b0cef8e28e3) * CI/Circle CI: Reduce ccache size from 5G to 1G This should speedup Circle CI cache saving and in turn no-pch build (cherry picked from commit 1b543ac16dd61ac6e1f8f00fee28156234c7e73f) * CI/Circle CI: Adjust config for master branch Co-authored-by: Giacomo Pozzoni <giacomopoz@gmail.com>
2016-04-17Contrib: Fix the check_update scripts after the recent organization changesNaios
* Fixes the travis build * Ref 8778829a98e3d605
2015-10-14contrib/script: error text corrections in check_updates.shtkrokli
Fix a factual error in the /contrib/check_updates.sh error message text, Best shown in an example from the latest travis build error: ``` $ ./contrib/check_updates.sh auth auth Database Updater check script: Checking database 'auth' for missing filenames in tables... - "sql/updates/2015_10_09_00_auth.sql" is missing in table 'auth'.'updates' Fatal error: The Database Updater is broken for database 'auth due to applied update which are missing in the 'auth'.'updates' table. How to fix: Insert the missing names of sql updates which were applied already to the 'updates' table of the 'auth' base dump ('sql/base/auth_database.sql'). The command "./contrib/check_updates.sh auth auth" exited with 1. ``` Main fix: `\"sql/updates/${file}\"` -> `\"sql/updates/${name}/${file}\"` Before this change, the error message claims that the updated SQL file was placed directly in the `/sql/updates/` directory and not in the subdirectory based on its DB name. All the other changes are improvements in English grammar and more precise description. (cherry picked from commit 01e0475ab898632bb9fd7c3ab0b11ddc6d5cee81)
2015-10-05Travis: Add check for update entries not listed in base dumps.Naios
* Will mark the travis build as failed when the database updater is broken. (cherry picked from commit 4dd6070c795fa7b34a38af0bd8d19d55bbc62959)