- Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (30 loc) · 678 Bytes
/
Makefile
File metadata and controls
37 lines (30 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
SDK="iphonesimulator"
DESTINATION="platform=iOS Simulator,name=iPhone 8"
PROJECT="StackViewController"
SCHEME="StackViewController"
.PHONY: all build test
build:
set -o pipefail && \
xcodebuild \
-sdk $(SDK) \
-derivedDataPath build \
-project $(PROJECT).xcodeproj \
-scheme $(SCHEME) \
-configuration Debug \
-destination $(DESTINATION) \
build | xcpretty
test:
set -o pipefail && \
xcodebuild \
-sdk $(SDK) \
-derivedDataPath build \
-project $(PROJECT).xcodeproj \
-scheme $(SCHEME) \
-configuration Debug \
-destination $(DESTINATION) \
test | xcpretty
ci:
$(MAKE) SCHEME=StackViewController test
$(MAKE) SCHEME=Example build
clean:
rm -rf build