-
-
Notifications
You must be signed in to change notification settings - Fork 218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI + codegen improvements; header update #48
Merged
Merged
Conversation
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
…rget and include! This means that JSON parsing efforts are duplicated, but we crates are more self-contained now. Each crate now has the source code it needs to process in its own directory, also confusing IDEs less.
Move conditionally-compiled symbols from unit test into own file. Also disable recursive dev-dependency, which causes following dev-dependency cycle during cargo test. Note that #[cfg(test)] is not carried along dependencies. godot-core [dev] -> godot [non-dev] -> godot-core [non-dev] So, we get a Heisenberg situation where both #[cfg(test)] and #[cfg(not(test))] are simultaneously true. This also happens without any dependencies, just thanks to doctest enabling #[cfg(doctest)] but not #[cfg(test)]. The following code prints *both* errors! #[cfg(test)] compile_error!("test"); #[cfg(not(test))] compile_error!("not(test)"); See comments in godot-core/lib.rs for more horror stories.
…ns with parameters
…rgs` fix (not yet in Godot)
4e72546
to
2634e4d
Compare
54aaf1e
to
7488b2e
Compare
Linux integration test currently failing because latest header change is not yet incorporated. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
c: ffi
Low-level components and interaction with GDExtension API
c: tooling
CI, automation, tools
quality-of-life
No new functionality, but improves ergonomics/internals
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This mega-PR improves the project setup across several domains:
bindgen
dependencyThis was unnecessarily hard due to incomplete/unintuitive implementation of
#[cfg(test)]
and#[cfg(doctest)]
. These issues are not solved despite closed.godot-core
andgodot-ffi
now each depend ongodot-codegen
, getting rid of the "pass-through" workaroundgen
directory, instead of a sharedtarget/godot-gen
one