From d383e9d1a4a776b2f1afd91c1c843705dea31573 Mon Sep 17 00:00:00 2001 From: Serhii Snitsaruk Date: Thu, 20 Jun 2024 19:54:14 +0200 Subject: [PATCH] GHA: Don't build web and android libs in test builds --- .github/workflows/gdextension.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/gdextension.yml b/.github/workflows/gdextension.yml index 3a3d842..7fd773c 100644 --- a/.github/workflows/gdextension.yml +++ b/.github/workflows/gdextension.yml @@ -95,42 +95,42 @@ jobs: platform: web target: template_release arch: wasm32 - should-build: true + should-build: ${{ !inputs.test-build }} - name: 🌐 Web (wasm32, debug) runner: ubuntu-20.04 platform: web target: template_debug arch: wasm32 - should-build: true + should-build: ${{ !inputs.test-build }} - name: 🤖 Android (arm64, release) runner: ubuntu-20.04 platform: android target: template_release arch: arm64 - should-build: true + should-build: ${{ !inputs.test-build }} - name: 🤖 Android (arm64, debug) runner: ubuntu-20.04 platform: android target: template_debug arch: arm64 - should-build: true + should-build: ${{ !inputs.test-build }} - name: 🤖 Android (x86_64, release) runner: ubuntu-20.04 platform: android target: template_release arch: x86_64 - should-build: true + should-build: ${{ !inputs.test-build }} - name: 🤖 Android (x86_64, debug) runner: ubuntu-20.04 platform: android target: template_debug arch: x86_64 - should-build: true + should-build: ${{ !inputs.test-build }} exclude: - { opts: { should-build: false } }