summaryrefslogtreecommitdiff
path: root/misc/scripts
diff options
context:
space:
mode:
authorBastiaan Olij <mux213@gmail.com>2021-10-20 18:22:49 +1100
committerBastiaan Olij <mux213@gmail.com>2021-10-21 20:30:19 +1100
commitdaff03576dc83b913a34d73298624192c7f28554 (patch)
tree7745ee49ec920df166624455ddfca4a994ff94ff /misc/scripts
parentf4c3192d0a558cae80b1e601b64deb0c6ae3a0ff (diff)
Add CI step for compiling and testing godot-cpp
Diffstat (limited to 'misc/scripts')
-rwxr-xr-xmisc/scripts/compare_extension_api.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/misc/scripts/compare_extension_api.py b/misc/scripts/compare_extension_api.py
new file mode 100755
index 0000000000..f96db4278c
--- /dev/null
+++ b/misc/scripts/compare_extension_api.py
@@ -0,0 +1,11 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+import sys
+
+# TODO:
+# Add a process that compares the original godot-cpp/godot-headers/extension_api.json with the new extension_api.json (both passed as arguments) and reports any API calls that have been removed.
+# If we only have additions or no changes to the file, we pass
+# For now we deem this too early because the API isn't stable enough yet.
+
+sys.exit(0)