summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2024-05-06 03:58:14 (GMT)
committerGitHub <noreply@github.com>2024-05-06 03:58:14 (GMT)
commit1506d5adc457a806e85886018804483e808d85c5 (patch)
tree1637cac89598382635be5eb41240dcef481cf9ca /Makefile.pre.in
parentdd37e85518bb5f3c9eff44ed1dbebecdd1d2aa06 (diff)
downloadcpython-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.in2
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