-
Notifications
You must be signed in to change notification settings - Fork 334
/
Makefile
56 lines (38 loc) · 1.85 KB
/
Makefile
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
XC_ARGS := -project Segment.xcodeproj GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES
IOS_XCARGS := $(XC_ARGS) -destination "platform=iOS Simulator,name=iPhone 11" -sdk iphonesimulator
TVOS_XCARGS := $(XC_ARGS) -destination "platform=tvOS Simulator,name=Apple TV"
MACOS_XCARGS := $(XC_ARGS) -destination "platform=macOS"
XC_BUILD_ARGS := -scheme Segment ONLY_ACTIVE_ARCH=NO
XC_TEST_ARGS := GCC_GENERATE_TEST_COVERAGE_FILES=YES SWIFT_VERSION=5.0 RUN_E2E_TESTS=$(RUN_E2E_TESTS) WEBHOOK_AUTH_USERNAME=$(WEBHOOK_AUTH_USERNAME)
bootstrap:
.buildscript/bootstrap.sh
lint:
pod lib lint --allow-warnings
carthage:
carthage build --platform ios --no-skip-current
archive: carthage
carthage archive Segment
clean-ios:
set -o pipefail && xcodebuild $(IOS_XCARGS) -scheme Segment clean | xcpretty
clean-tvos:
set -o pipefail && xcodebuild $(TVOS_XCARGS) -scheme Segment clean | xcpretty
clean-macos:
set -o pipefail && xcodebuild $(MACOS_XCARGS) -scheme Segment clean | xcpretty
clean: clean-ios clean-tvos clean-macos
build-ios:
set -o pipefail && xcodebuild $(IOS_XCARGS) $(XC_BUILD_ARGS) | xcpretty
build-tvos:
set -o pipefail && xcodebuild $(TVOS_XCARGS) $(XC_BUILD_ARGS) | xcpretty
build-macos:
set -o pipefail && xcodebuild $(MACOS_XCARGS) $(XC_BUILD_ARGS) | xcpretty
build: build-ios build-tvos
test-ios:
@set -o pipefail && xcodebuild test $(IOS_XCARGS) -scheme SegmentTests $(XC_TEST_ARGS) | xcpretty --report junit
test-tvos:
@set -o pipefail && xcodebuild test $(TVOS_XCARGS) -scheme SegmentTests $(XC_TEST_ARGS) | xcpretty --report junit
test-macos:
@set -o pipefail && xcodebuild test $(MACOS_XCARGS) -scheme SegmentTests $(XC_TEST_ARGS) | xcpretty --report junit
test: test-ios test-tvos test-macos
xctest:
xctool $(IOS_XCARGS) -scheme SegmentTests $(XC_TEST_ARGS) run-tests -sdk iphonesimulator
.PHONY: bootstrap dependencies lint carthage archive build test xctest clean