diff options
author | Jan Haller <bromeon@gmail.com> | 2024-08-31 21:53:15 +0200 |
---|---|---|
committer | Jan Haller <bromeon@gmail.com> | 2024-09-02 19:03:35 +0200 |
commit | c89a57d4c2bcaddaf4b53cc9fb6e3c8b4ebfad50 (patch) | |
tree | e71987a4c9f3e6bf9a2faa7f93d3abe44cd53edc /.github | |
parent | 7c383767a29969b0c3db036742da00ef58b765dd (diff) | |
download | redot-engine-c89a57d4c2bcaddaf4b53cc9fb6e3c8b4ebfad50.tar.gz |
CI: add C compile step for gdextension_interface.h
It has happened repeatedly that C++ code accidentally crept into the
GDExtension C header, a notable example being use of the `bool` type.
This change adds a CI step to check the header with a C-only compiler.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/godot_cpp_test.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/godot_cpp_test.yml b/.github/workflows/godot_cpp_test.yml index e1c37bbc1e..e3223c799b 100644 --- a/.github/workflows/godot_cpp_test.yml +++ b/.github/workflows/godot_cpp_test.yml @@ -56,3 +56,13 @@ jobs: cd godot-cpp/test scons target=template_debug dev_build=yes cd ../.. + + gdextension-c-compile: + runs-on: "ubuntu-20.04" + name: "Check GDExtension header with a C compiler" + steps: + - uses: actions/checkout@v4 + + - name: "Run C compiler on gdextension_interface.h" + run: | + gcc -c core/extension/gdextension_interface.h |