From 1cdde4d5a91278097e535b37f7ac407f8842b110 Mon Sep 17 00:00:00 2001 From: Serhii Snitsaruk Date: Wed, 16 Oct 2024 14:26:15 +0200 Subject: [PATCH] GHA: Add iOS builds to GDExtension workflow --- .github/workflows/gdextension.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/gdextension.yml b/.github/workflows/gdextension.yml index 537a2a0..275a8bd 100644 --- a/.github/workflows/gdextension.yml +++ b/.github/workflows/gdextension.yml @@ -168,6 +168,20 @@ jobs: arch: x86_32 should-build: ${{ !inputs.test-build }} + - name: 🍏 iOS (universal, release) + runner: macos-latest + platform: ios + target: template_release + arch: universal + should-build: ${{ !inputs.test-build }} + + - name: 🍏 iOS (universal, debug) + runner: macos-latest + platform: ios + target: template_debug + arch: universal + should-build: ${{ !inputs.test-build }} + exclude: - { opts: { should-build: false } }