-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile
54 lines (48 loc) · 1.45 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
PLATFORM_IOS = iOS Simulator,name=iPhone 13 Pro Max
PLATFORM_MACOS = macOS
PLATFORM_TVOS = tvOS Simulator,name=Apple TV
PLATFORM_WATCHOS = watchOS Simulator,name=Apple Watch Series 7 (45mm)
TEST_RUNNER_CI = $(CI)
default: test
test:
xcodebuild test \
-workspace SwiftUINavigation.xcworkspace \
-scheme SwiftUINavigation \
-destination platform="$(PLATFORM_IOS)"
xcodebuild test \
-workspace SwiftUINavigation.xcworkspace \
-scheme SwiftUINavigation \
-destination platform="$(PLATFORM_MACOS)"
xcodebuild test \
-workspace SwiftUINavigation.xcworkspace \
-scheme SwiftUINavigation \
-destination platform="$(PLATFORM_TVOS)"
xcodebuild test \
-workspace SwiftUINavigation.xcworkspace \
-scheme SwiftUINavigation \
-destination platform="$(PLATFORM_WATCHOS)"
test-examples:
xcodebuild test \
-workspace SwiftUINavigation.xcworkspace \
-scheme Standups \
-destination platform="$(PLATFORM_IOS)"
DOC_WARNINGS := $(shell xcodebuild clean docbuild \
-scheme SwiftUINavigation \
-destination platform="$(PLATFORM_MACOS)" \
-quiet \
2>&1 \
| grep "couldn't be resolved to known documentation" \
| sed 's|$(PWD)|.|g' \
| tr '\n' '\1')
test-docs:
@test "$(DOC_WARNINGS)" = "" \
|| (echo "xcodebuild docbuild failed:\n\n$(DOC_WARNINGS)" | tr '\1' '\n' \
&& exit 1)
format:
swift format \
--ignore-unparsable-files \
--in-place \
--parallel \
--recursive \
./Examples ./Package.swift ./Sources ./Tests
.PHONY: format test-all test-docs