forked from pointfreeco/swift-composable-architecture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
62 lines (53 loc) · 1.75 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
57
58
59
60
61
62
PLATFORM_IOS = iOS Simulator,name=iPhone 11 Pro Max
PLATFORM_MACOS = macOS
PLATFORM_MAC_CATALYST = macOS,variant=Mac Catalyst
PLATFORM_TVOS = tvOS Simulator,name=Apple TV
PLATFORM_WATCHOS = watchOS Simulator,name=Apple Watch Series 7 (45mm)
default: test-all
test-all: test-examples
CONFIG=debug test-library
CONFIG=release test-library
CONFIG=debug test-library
CONFIG=release test-library
test-library:
for platform in "$(PLATFORM_IOS)" "$(PLATFORM_MACOS)" "$(PLATFORM_MAC_CATALYST)" "$(PLATFORM_TVOS)" "$(PLATFORM_WATCHOS)"; do \
xcodebuild test \
-configuration $(CONFIG) \
-workspace ComposableArchitecture.xcworkspace \
-scheme ComposableArchitecture \
-destination platform="$$platform" || exit 1; \
done;
build-for-library-evolution:
swift build \
-c release \
--target ComposableArchitecture \
-Xswiftc -emit-module-interface \
-Xswiftc -enable-library-evolution
DOC_WARNINGS := $(shell xcodebuild clean docbuild \
-scheme ComposableArchitecture \
-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)
test-examples:
for scheme in "CaseStudies (SwiftUI)" "CaseStudies (UIKit)" Search SpeechRecognition TicTacToe Todos VoiceMemos; do \
xcodebuild test \
-scheme $$scheme \
-destination platform="$(PLATFORM_IOS)"; \
done
benchmark:
swift run --configuration release \
swift-composable-architecture-benchmark
format:
swift format \
--ignore-unparsable-files \
--in-place \
--recursive \
./Examples ./Package.swift ./Sources ./Tests
.PHONY: format test-all test-swift test-workspace