GHA: Don't build web and android libs in test builds

This commit is contained in:
Serhii Snitsaruk 2024-06-20 19:54:14 +02:00
parent 4f1b22c668
commit d383e9d1a4
No known key found for this signature in database
GPG Key ID: A965EF8799FFEC2D
1 changed files with 6 additions and 6 deletions

View File

@ -95,42 +95,42 @@ jobs:
platform: web platform: web
target: template_release target: template_release
arch: wasm32 arch: wasm32
should-build: true should-build: ${{ !inputs.test-build }}
- name: 🌐 Web (wasm32, debug) - name: 🌐 Web (wasm32, debug)
runner: ubuntu-20.04 runner: ubuntu-20.04
platform: web platform: web
target: template_debug target: template_debug
arch: wasm32 arch: wasm32
should-build: true should-build: ${{ !inputs.test-build }}
- name: 🤖 Android (arm64, release) - name: 🤖 Android (arm64, release)
runner: ubuntu-20.04 runner: ubuntu-20.04
platform: android platform: android
target: template_release target: template_release
arch: arm64 arch: arm64
should-build: true should-build: ${{ !inputs.test-build }}
- name: 🤖 Android (arm64, debug) - name: 🤖 Android (arm64, debug)
runner: ubuntu-20.04 runner: ubuntu-20.04
platform: android platform: android
target: template_debug target: template_debug
arch: arm64 arch: arm64
should-build: true should-build: ${{ !inputs.test-build }}
- name: 🤖 Android (x86_64, release) - name: 🤖 Android (x86_64, release)
runner: ubuntu-20.04 runner: ubuntu-20.04
platform: android platform: android
target: template_release target: template_release
arch: x86_64 arch: x86_64
should-build: true should-build: ${{ !inputs.test-build }}
- name: 🤖 Android (x86_64, debug) - name: 🤖 Android (x86_64, debug)
runner: ubuntu-20.04 runner: ubuntu-20.04
platform: android platform: android
target: template_debug target: template_debug
arch: x86_64 arch: x86_64
should-build: true should-build: ${{ !inputs.test-build }}
exclude: exclude:
- { opts: { should-build: false } } - { opts: { should-build: false } }