15 lines
459 B
YAML
15 lines
459 B
YAML
language: objective-c
|
|
osx_image: xcode9.4
|
|
env:
|
|
- DESTINATION="arch=x86_64" PLATFORM=Mac
|
|
- DESTINATION="OS=11.4,name=iPhone 5s" PLATFORM=iOS
|
|
cache:
|
|
directories:
|
|
- Carthage
|
|
before_install:
|
|
- carthage bootstrap --cache-builds --no-use-binaries --platform $PLATFORM --verbose
|
|
install:
|
|
- xcodebuild -scheme PMKCoreBluetooth -destination "$DESTINATION" build
|
|
script:
|
|
- xcodebuild -scheme PMKCoreBluetooth -destination "$DESTINATION" test
|