diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8adae975..7ed4f839 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,10 +66,6 @@ jobs: path: bin/libgodot-cpp.windows.release.64.lib if-no-files-found: error - - name: Build test GDNative library - run: | - scons target=release platform=windows bits=64 -j $env:NUMBER_OF_PROCESSORS -C test; - windows-mingw: name: Build (Windows, MinGW) runs-on: windows-2019 @@ -104,10 +100,6 @@ jobs: path: bin/libgodot-cpp.windows.release.64.a if-no-files-found: error - - name: Build test GDNative library - run: | - scons target=release platform=windows bits=64 -j $env:NUMBER_OF_PROCESSORS -C test; - macos: name: Build (macOS, Clang) runs-on: macos-10.15 diff --git a/test/src/init.cpp b/test/src/init.cpp index 9164ba58..47d4fda3 100644 --- a/test/src/init.cpp +++ b/test/src/init.cpp @@ -36,7 +36,7 @@ public: register_property("base/value", &SimpleClass::set_value, &SimpleClass::get_value, 0); /** Registering a signal: **/ - register_signal("signal_name0"); + register_signal("signal_name0"); // windows: error C2668: 'godot::register_signal': ambiguous call to overloaded function register_signal("signal_name1", "string_argument", GODOT_VARIANT_TYPE_STRING); }