File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 32
32
33
33
# Local variables
34
34
# Note: using variables is limited at the moment, see https://github.com/actions/runner/issues/480
35
- GDRUST_FEATURES : " gdnative/async,gdnative/serde"
35
+ GDRUST_FEATURES : " gdnative/async,gdnative/serde,gdnative_bindings_generator/debug "
36
36
CARGO_DENY_VERSION : " 0.11.0"
37
37
CARGO_DINGHY_VERSION : " 0.4.68"
38
38
Original file line number Diff line number Diff line change 13
13
# Local variables
14
14
# Note: using variables is limited at the moment, see https://github.com/actions/runner/issues/480
15
15
GODOT_VER : " 3.4.1"
16
+
17
+ # Don't use more features like "gdnative_bindings_generator/debug" to keep CI truly minimal
16
18
GDRUST_FEATURES : " gdnative/async,gdnative/serde"
17
19
18
20
on :
Original file line number Diff line number Diff line change 8
8
- ' 0.10.[0-9]+-?*'
9
9
10
10
env :
11
- GDRUST_FEATURES : " gdnative/async,gdnative/serde"
11
+ # Note: used for test and clippy, not for publish
12
+ GDRUST_FEATURES : " gdnative/async,gdnative/serde,gdnative_bindings_generator/debug"
12
13
13
14
# Crates to publish -- important, this doesn't work when there are spaces in any of the paths!
14
15
GDRUST_CRATES : >
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ pub(crate) mod test_prelude {
225
225
226
226
let api = Api :: new ( include_str ! ( "../../gdnative-bindings/api.json" ) ) ;
227
227
let mut buffer = BufWriter :: new ( Vec :: with_capacity ( 16384 ) ) ;
228
- for class in api. classes {
228
+ for class in & api. classes {
229
229
let mut icalls = HashMap :: new ( ) ;
230
230
231
231
let code = generate_module_doc ( & class) ;
You can’t perform that action at this time.
0 commit comments