forked from carabina/SoundCloudSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
16 lines (13 loc) · 947 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
bootstrap:
brew install carthage
gem install cocoapods
dependencies:
carthage update
build:
set -o pipefail && xcodebuild build -project SoundCloudSwift.xcodeproj -scheme "SoundCloudSwift iOS" ONLY_ACTIVE_ARCH=NO | xcpretty -c
set -o pipefail && xcodebuild build -project SoundCloudSwift.xcodeproj -scheme "SoundCloudSwift OSX" ONLY_ACTIVE_ARCH=NO | xcpretty -c
set -o pipefail && xcodebuild build -project SoundCloudSwift.xcodeproj -scheme "SoundCloudSwift tvOS" ONLY_ACTIVE_ARCH=NO | xcpretty -c
set -o pipefail && xcodebuild build -project SoundCloudSwift.xcodeproj -scheme "SoundCloudSwift watchOS" ONLY_ACTIVE_ARCH=NO | xcpretty -c
test:
set -o pipefail && xcodebuild test -project SoundCloudSwift.xcodeproj -scheme "SoundCloudSwift iOS" -sdk iphonesimulator9.1 ONLY_ACTIVE_ARCH=NO | xcpretty -c
set -o pipefail && xcodebuild test -project SoundCloudSwift.xcodeproj -scheme "SoundCloudSwift OSX" ONLY_ACTIVE_ARCH=NO | xcpretty -c