diff options
author | Russell Keith-Magee <russell@keith-magee.com> | 2024-05-06 03:58:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 03:58:14 (GMT) |
commit | 1506d5adc457a806e85886018804483e808d85c5 (patch) | |
tree | 1637cac89598382635be5eb41240dcef481cf9ca /Makefile.pre.in | |
parent | dd37e85518bb5f3c9eff44ed1dbebecdd1d2aa06 (diff) | |
download | cpython-1506d5adc457a806e85886018804483e808d85c5.zip cpython-1506d5adc457a806e85886018804483e808d85c5.tar.gz cpython-1506d5adc457a806e85886018804483e808d85c5.tar.bz2 |
Set a DerivedData path for iOS test builds. (GH-118621)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index ddc8b2f..88ec200 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -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 |