diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-11-12 17:23:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-12 17:23:07 +0100 |
commit | aa1b13a96e6c4ef2075f1d816c90f959e66c21d5 (patch) | |
tree | f6d15942ced6da2940536d3455594bf87c4fbeed | |
parent | 9da86c2fb73205869adf5a7449f5e4246d845db9 (diff) | |
parent | ae713f8980c734211ab72fb9bc266d108da3c58d (diff) |
Merge pull request #51048 from aaronfranke/ci-minimal
-rw-r--r-- | .github/workflows/linux_builds.yml | 8 | ||||
-rw-r--r-- | modules/text_server_fb/text_server_fb.cpp | 2 | ||||
-rw-r--r-- | scene/animation/animation_tree.cpp | 2 |
3 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/linux_builds.yml b/.github/workflows/linux_builds.yml index 15bd4bc69b..44d0cb041f 100644 --- a/.github/workflows/linux_builds.yml +++ b/.github/workflows/linux_builds.yml @@ -51,6 +51,14 @@ jobs: build-mono: false artifact: true + - name: Minimal Template (target=release, tools=no, everything disabled) + cache-name: linux-template-minimal + target: release + tools: false + tests: false + sconsflags: modules_enabled_by_default=no disable_3d=yes disable_advanced_gui=yes deprecated=no minizip=no + artifact: true + steps: - uses: actions/checkout@v2 diff --git a/modules/text_server_fb/text_server_fb.cpp b/modules/text_server_fb/text_server_fb.cpp index 0728812ecb..80ae10c005 100644 --- a/modules/text_server_fb/text_server_fb.cpp +++ b/modules/text_server_fb/text_server_fb.cpp @@ -3267,7 +3267,9 @@ TextServerFallback::TextServerFallback() { }; TextServerFallback::~TextServerFallback() { +#ifdef MODULE_FREETYPE_ENABLED if (library != nullptr) { FT_Done_FreeType(library); } +#endif }; diff --git a/scene/animation/animation_tree.cpp b/scene/animation/animation_tree.cpp index 87ae870364..37e754148c 100644 --- a/scene/animation/animation_tree.cpp +++ b/scene/animation/animation_tree.cpp @@ -901,7 +901,9 @@ void AnimationTree::_process_graph(real_t p_delta) { real_t weight = as.blend; bool seeked = as.seeked; int pingponged = as.pingponged; +#ifndef _3D_DISABLED bool backward = signbit(delta); +#endif // _3D_DISABLED for (int i = 0; i < a->get_track_count(); i++) { NodePath path = a->track_get_path(i); |