From 741a1c2c3e65b91eb1196808d5ca4190b2af7200 Mon Sep 17 00:00:00 2001 From: Waridley Date: Tue, 8 Jun 2021 19:22:41 -0500 Subject: [PATCH 1/2] Make test gdnlib not-relodable Fixes crashes due to hot-reloading changes in godot 3.3 that cause reloadable libraries to be terminated when no NativeScripts remain referencing them. --- test/project/gdnative.gdnlib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/project/gdnative.gdnlib b/test/project/gdnative.gdnlib index 7f5664b21..a818b2ff7 100644 --- a/test/project/gdnative.gdnlib +++ b/test/project/gdnative.gdnlib @@ -16,4 +16,4 @@ X11.64=[ ] singleton=false load_once=true symbol_prefix="godot_" -reloadable=true +reloadable=false From 6ed7506024faf14dd272c25a63ef6ab96fa8b8a7 Mon Sep 17 00:00:00 2001 From: Waridley Date: Tue, 8 Jun 2021 19:25:03 -0500 Subject: [PATCH 2/2] Bump Godot version in tests workflow --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71d9da6b4..207b6cb3e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI env: RUST_BACKTRACE: 1 - GODOT_VER: 3.2 + GODOT_VER: 3.3 GODOT_REL: stable on: