From 58bedb124e1f3919530bad96b6f1a2ada8a6b218 Mon Sep 17 00:00:00 2001 From: Josh Tynjala Date: Tue, 9 Apr 2024 09:05:36 -0700 Subject: [PATCH] actions: Build SimpleImage for iOS simulator and SimpleAudio for iOS devices (using new -nosign option) That way, we test both simulator and device builds for iOS. --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 286baeb53..85015a659 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -391,15 +391,15 @@ jobs: # lime create HelloWorld -verbose -nocolor -eval # lime build HelloWorld ios -simulator -release -verbose -nocolor -eval - - name: Build SimpleImage sample + - name: Build SimpleImage sample (Simulator) run: | lime create SimpleImage -verbose -nocolor -eval lime build SimpleImage ios -simulator -release -verbose -nocolor -eval - - name: Build SimpleAudio sample + - name: Build SimpleAudio sample (Device) run: | lime create SimpleAudio -verbose -nocolor -eval - lime build SimpleAudio ios -simulator -release -verbose -nocolor -eval + lime build SimpleAudio ios -release -nosign -verbose -nocolor -eval package-haxelib: needs: [linux, macos, windows, android, ios]