forked from inevs/Converter_Objc
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile
18 lines (13 loc) · 781 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
default: compile
compile:
xcodebuild -workspace Converter.xcworkspace -scheme Converter -sdk iphonesimulator8.1 -derivedDataPath build clean build
test:
xcodebuild -workspace Converter.xcworkspace -scheme Converter -sdk iphonesimulator8.1 -derivedDataPath build -destination 'platform=iOS Simulator,name=iPhone 6' test
test_with_result:
xcodebuild -workspace Converter.xcworkspace -scheme Converter -sdk iphonesimulator8.1 -derivedDataPath build -destination 'platform=iOS Simulator,name=iPhone 6' test 2>&1 | ocunit2junit
deploy:
ipa build -d build -s Converter
ipa distribute:hockeyapp --token d334d30117d340e983d5407d85075684 -f build/Converter.ipa -d build/Converter.app.dSYM.zip -m "New version"
spec:
frank build --scheme "Converter_UITest"
cd Frank; cucumber