-
Notifications
You must be signed in to change notification settings - Fork 671
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ci checks for missing downgrade script updates
- Loading branch information
Showing
3 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#! /bin/bash | ||
|
||
set -euo pipefail | ||
# shellcheck disable=SC1091 | ||
source ci/ci_helpers.sh | ||
|
||
# This file checks for the existence of downgrade scripts for every upgrade script that is changed in the branch. | ||
|
||
# create list of migration files for upgrades | ||
upgrade_files=$(git diff --name-only origin/main | { grep "src/backend/distributed/sql/citus--.*sql" || exit 0 ; }) | ||
downgrade_files=$(git diff --name-only origin/main | { grep "src/backend/distributed/sql/downgrades/citus--.*sql" || exit 0 ; }) | ||
ret_value=0 | ||
|
||
for file in $upgrade_files | ||
do | ||
# There should always be 2 matches, and no need to avoid splitting here | ||
# shellcheck disable=SC2207 | ||
versions=($(grep --only-matching --extended-regexp "[0-9]+\.[0-9]+[-.][0-9]+" <<< "$file")) | ||
|
||
from_version=${versions[0]}; | ||
to_version=${versions[1]}; | ||
|
||
downgrade_migration_file="src/backend/distributed/sql/downgrades/citus--$to_version--$from_version.sql" | ||
|
||
# check for the existence of migration scripts | ||
if [[ $(grep --line-regexp --count downgrade_migration_file <<< "$downgrade_files") == 0 ]] | ||
then | ||
echo "$file is updated, but $downgrade_migration_file is not updated in branch" | ||
ret_value=1 | ||
fi | ||
done | ||
|
||
exit $ret_value; |