mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
22 lines
1.2 KiB
Bash
Executable File
22 lines
1.2 KiB
Bash
Executable File
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
|
|
. "$DIR/prelude.sh"
|
|
|
|
cd src
|
|
|
|
set -o errexit
|
|
set -o verbose
|
|
activate_venv
|
|
|
|
$python buildscripts/idl/check_stable_api_commands_have_idl_definitions.py -v --install-dir dist-test/bin --include src --include src/mongo/db/modules/enterprise/src 1
|
|
$python buildscripts/idl/checkout_idl_files_from_past_releases.py -v idls
|
|
find idls -maxdepth 1 -mindepth 1 -type d | while read dir; do
|
|
echo "Performing idl check compatibility with release: $dir:"
|
|
$python buildscripts/idl/idl_check_compatibility.py -v --old-include "$dir/src" --old-include "$dir/src/mongo/db/modules/enterprise/src" --new-include src --new-include src/mongo/db/modules/enterprise/src "$dir/src" src
|
|
done
|
|
|
|
# Run the idl compatibility checker script with the current src directory as both the "old" and
|
|
# "new" versions. This is so that we can check that commands that were newly added since the last
|
|
# release adhere to compatibility requirements.
|
|
echo "Performing idl check compatibility for newly added commands since the last release:"
|
|
$python buildscripts/idl/idl_check_compatibility.py -v --old-include src --old-include src/mongo/db/modules/enterprise/src --new-include src --new-include src/mongo/db/modules/enterprise/src src src
|