From 0fb85f76e63e34aa544af3d35c5f3f062ec9658c Mon Sep 17 00:00:00 2001 From: Nathan Franke Date: Sun, 7 Aug 2022 21:38:46 -0500 Subject: [PATCH] fix github actions --- .github/workflows/build.yml | 5 ----- src/my_node.hpp | 1 + src/my_singleton.hpp | 1 + src/register_types.h | 1 + 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bdb6a00..950257e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -96,11 +96,6 @@ jobs: run: | "$ANDROID_SDK_ROOT"/cmdline-tools/latest/bin/sdkmanager --sdk_root="$ANDROID_SDK_ROOT" "platform-tools" "build-tools;30.0.3" "platforms;android-29" "cmdline-tools;latest" "cmake;3.10.2.4988404" "ndk;21.4.7075529" - # TODO: Figure out why aarch64-linux-android-ar isn't already included. - wget 'https://github.com/urho3d/android-ndk/blob/5f984a348cdaab4c044922c7a154f48d183781bc/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-ar?raw=true' -O aarch64-linux-android-ar - chmod +x aarch64-linux-android-ar - mv aarch64-linux-android-ar /usr/local/lib/android/sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/ - - name: Set up Python uses: actions/setup-python@v2 diff --git a/src/my_node.hpp b/src/my_node.hpp index 9054ce1..5081162 100644 --- a/src/my_node.hpp +++ b/src/my_node.hpp @@ -1,6 +1,7 @@ #pragma once #include +#include using namespace godot; diff --git a/src/my_singleton.hpp b/src/my_singleton.hpp index 74805b2..83009af 100644 --- a/src/my_singleton.hpp +++ b/src/my_singleton.hpp @@ -1,6 +1,7 @@ #pragma once #include +#include using namespace godot; diff --git a/src/register_types.h b/src/register_types.h index 893f091..e5586bb 100644 --- a/src/register_types.h +++ b/src/register_types.h @@ -1,6 +1,7 @@ #pragma once #include + using namespace godot; void gdextension_initialize(ModuleInitializationLevel p_level);