Skip to content

Commit 668631b

Browse files
authored
Update build-real.sh
1 parent 136cc21 commit 668631b

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

Scripts/ci/build-real.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,15 @@ pushd $WD
1818
# XCUIAutomation.framework, XCUnit.framework
1919
rm -rf $SCHEME-Runner.app/Frameworks/XC*.framework
2020

21-
# Xcode 16 started generating Testing.framework but it might not be necessary for WDA
21+
# Xcode 16 started generating 5.9MB of 'Testing.framework', but it might not be necessary for WDA
2222
rm -rf $SCHEME-Runner.app/Frameworks/Testing.framework
2323

24+
# This library is used for Swift testing. WDA doesn't include Swift stuff, thus this is not needed.
25+
# Xcode 16 generates a 2.6 MB file size. Xcode 15 was a 1 MB file size.
26+
rm -rf $SCHEME-Runner.app/Frameworks/libXCTestSwiftSupport.dylib
27+
28+
29+
2430
zip -r $ZIP_PKG_NAME $SCHEME-Runner.app
2531
popd
2632
mv $WD/$ZIP_PKG_NAME ./

0 commit comments

Comments
 (0)