forked from Brightify/Cuckoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (20 loc) · 719 Bytes
/
Makefile
File metadata and controls
29 lines (20 loc) · 719 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
.PHONY: dev
dev:
(killall Xcode || true)
# Create generated mocks file which will be populated later.
touch "Tests/Swift/Generated/GeneratedMocks.swift"
# Generate Xcode structure.
TUIST_PROJECT_DIR=$(PWD) tuist generate --no-open
xed Cuckoo.xcworkspace
init:
# Install Tuist if not present.
if ! command -v tuist &> /dev/null; then curl -Ls https://install.tuist.io | bash; fi
# Install Gemfile dependencies if `bundle` is available.
if ! command -v bundle &> /dev/null; then bundle install; fi
# Generate Cuckoo workspace.
make dev
ci:
# Install Tuist if not present.
if ! command -v tuist &> /dev/null; then curl -Ls https://install.tuist.io | bash; fi
# Generate Cuckoo workspace.
make dev