From ed3ec1e347129e798636b8e819d7b39f4554fa6e Mon Sep 17 00:00:00 2001 From: hicka04 Date: Thu, 13 Jun 2024 22:47:26 +0900 Subject: [PATCH] Use xcbeautify --- .github/workflows/ios.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 8d1cfc7..2a02a49 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -21,9 +21,11 @@ jobs: - name: Build run: | + set -eo pipefaile ./gradlew shared:assembleSharedReleaseXCFramework - xcodebuild build-for-testing -project $project -scheme $scheme -destination "platform=iOS Simulator,name=$device" + xcodebuild build-for-testing -project $project -scheme $scheme -destination "platform=iOS Simulator,name=$device" | xcbeautify - name: Test run: | - xcodebuild test-without-building -project $project -scheme $scheme -destination "platform=iOS Simulator,name=$device" + set -eo pipefaile + xcodebuild test-without-building -project $project -scheme $scheme -destination "platform=iOS Simulator,name=$device" | xcbeautify