We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1b4bd7 commit 6844b53Copy full SHA for 6844b53
Makefile
@@ -25,10 +25,17 @@ build: dependencies
25
$(XCODE_BUILD) build | xcpretty
26
27
test: optional_early_start_simulator
28
+ifdef TRAVIS
29
+ cd $(WORKING_DIR) && \
30
+ travis_retry $(XCODE_BUILD) \
31
+ -destination '${BUILD_DESTINATION}' \
32
+ test | xcpretty
33
+else
34
cd $(WORKING_DIR) && \
35
$(XCODE_BUILD) \
36
-destination '${BUILD_DESTINATION}' \
37
test | xcpretty
38
+end
39
40
clean:
41
0 commit comments