|
|
@ -3,6 +3,7 @@ SHELL=/bin/bash -o pipefail -o errexit
|
|
|
|
|
|
|
|
|
|
|
|
WORKING_DIR = ./
|
|
|
|
WORKING_DIR = ./
|
|
|
|
SCHEME = Signal
|
|
|
|
SCHEME = Signal
|
|
|
|
|
|
|
|
XCODE_BUILD = xcrun xcodebuild -workspace $(SCHEME).xcworkspace -scheme $(SCHEME) -sdk iphonesimulator
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: build test retest clean dependencies
|
|
|
|
.PHONY: build test retest clean dependencies
|
|
|
|
|
|
|
|
|
|
|
@ -32,6 +33,8 @@ test:
|
|
|
|
clean:
|
|
|
|
clean:
|
|
|
|
cd $(WORKING_DIR) && \
|
|
|
|
cd $(WORKING_DIR) && \
|
|
|
|
rm -fr Carthage/Build && \
|
|
|
|
rm -fr Carthage/Build && \
|
|
|
|
$(XCODE_BUILD) \
|
|
|
|
$(XCODE_BUILD) clean | xcpretty
|
|
|
|
clean | xcpretty
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Migrating across swift versions requires me to run this sometimes
|
|
|
|
|
|
|
|
clean_carthage_cache:
|
|
|
|
|
|
|
|
rm -fr ~/Library/Caches/org.carthage.CarthageKit/
|
|
|
|