Skip to content

Commit

Permalink
iOS: fix the test step for catalyst
Browse files Browse the repository at this point in the history
  • Loading branch information
bblanchon committed Dec 13, 2024
1 parent cf6ca3b commit 07aee3f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion steps/08-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,19 @@ case "$OS" in
case "$CPU" in
arm64)
ARCH="arm64"
SDK="iphoneos"
;;
x64)
ARCH="x86_64"
;;
esac
case "$TARGET_ENVIRONMENT" in
device)
SDK="iphoneos"
;;
catalyst)
SDK="macosx"
;;
simulator)
SDK="iphonesimulator"
;;
esac
Expand Down

0 comments on commit 07aee3f

Please sign in to comment.