19 lines
671 B
YAML
19 lines
671 B
YAML
language: objective-c
|
|
xcode_project: Socket.IO-Client-Swift.xcodeproj # path to your xcodeproj folder
|
|
xcode_scheme: SocketIO-Mac
|
|
osx_image: xcode9
|
|
branches:
|
|
only:
|
|
- master
|
|
- development
|
|
before_install:
|
|
- brew update
|
|
- brew outdated xctool || brew upgrade xctool
|
|
- brew outdated carthage || brew upgrade carthage
|
|
script:
|
|
- carthage update
|
|
- xcodebuild -project Socket.IO-Client-Swift.xcodeproj -scheme SocketIO-Mac build test -quiet
|
|
# - xcodebuild -project Socket.IO-Client-Swift.xcodeproj -scheme SocketIO-Mac build-for-testing -quiet
|
|
# - xctool -project Socket.IO-Client-Swift.xcodeproj -scheme SocketIO-Mac run-tests --parallelize
|
|
- swift build
|