diff --git a/.github/workflows/ios-test.yml b/.github/workflows/ios-test.yml index eec223370..d9319e356 100644 --- a/.github/workflows/ios-test.yml +++ b/.github/workflows/ios-test.yml @@ -89,6 +89,11 @@ jobs: - name: Build Test Modules working-directory: ./ios run: make test-modules + - name: Show XCResult + uses: kishikawakatsumi/xcresulttool@v1.0.3 + with: + path: 'ios/BuildResults-ModuleTest-Debug' + if: success() || failure() build-app-debug: name: "iOS Buid Test on Debug Configuration" diff --git a/ios/Sources/Component/Tag/Tag.swift b/ios/Sources/Component/Tag/Tag.swift index 17f649fed..033c986ec 100644 --- a/ios/Sources/Component/Tag/Tag.swift +++ b/ios/Sources/Component/Tag/Tag.swift @@ -15,8 +15,6 @@ public struct Tag: View { Text(media.title) .font(.caption) .foregroundColor(AssetColor.Base.white.color) - .padding(.vertical, 4) - .padding(.horizontal, 12) .background(media.backgroundColor) .clipShape( CutCornerRectangle( diff --git a/ios/scripts/xcodebuild.sh b/ios/scripts/xcodebuild.sh index 2183da2db..e2a9f3412 100755 --- a/ios/scripts/xcodebuild.sh +++ b/ios/scripts/xcodebuild.sh @@ -7,10 +7,12 @@ CONFIGURATION=${3} SWIFT_RUN="swift run -c release --package-path Tools" WORKSPACE=DroidKaigiFeeder.xcworkspace PLATFORM_IOS="iOS Simulator,name=iPhone 12 Pro,OS=15.0" +RESULT_BUNDLE_PATH="BuildResults-$SCHEME-$CONFIGURATION" echo "⚙️ Building $SCHEME..." set -o pipefail && xcodebuild $TYPE \ -workspace $WORKSPACE \ -scheme "$SCHEME" \ -configuration $CONFIGURATION \ +-resultBundlePath "$RESULT_BUNDLE_PATH" \ -destination platform="$PLATFORM_IOS" | $SWIFT_RUN xcbeautify --quiet