]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Set a DerivedData path for iOS test builds. (GH-118621)
authorRussell Keith-Magee <russell@keith-magee.com>
Mon, 6 May 2024 03:58:14 +0000 (11:58 +0800)
committerGitHub <noreply@github.com>
Mon, 6 May 2024 03:58:14 +0000 (23:58 -0400)
Makefile.pre.in

index ddc8b2feda51c4974fe3ab2412fd2c8317894051..88ec2009fbfffe4512520ec6b17202449a3fb37d 100644 (file)
@@ -2067,7 +2067,7 @@ testios:
 
        # Run the test suite for the Xcode project, targeting the iOS simulator.
        # If the suite fails, touch a file in the test folder as a marker
-       if ! xcodebuild test -project $(XCFOLDER)/iOSTestbed.xcodeproj -scheme "iOSTestbed" -destination "platform=iOS Simulator,name=iPhone SE (3rd Generation)" -resultBundlePath $(XCRESULT) ; then \
+       if ! xcodebuild test -project $(XCFOLDER)/iOSTestbed.xcodeproj -scheme "iOSTestbed" -destination "platform=iOS Simulator,name=iPhone SE (3rd Generation)" -resultBundlePath $(XCRESULT) -derivedDataPath $(XCFOLDER)/DerivedData ; then \
                touch $(XCFOLDER)/failed; \
        fi