mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
494 B
YAML
24 lines
494 B
YAML
language: objective-c
|
|
|
|
osx_image: xcode7.3
|
|
env:
|
|
- TEST_DIR=Example/TSKitiOSTestApp
|
|
|
|
before_install:
|
|
- cd $TEST_DIR
|
|
- brew update
|
|
- brew outdated xctool || brew upgrade xctool
|
|
- gem install cocoapods --no-ri --no-rdoc
|
|
- pod repo update --silent
|
|
|
|
install: pod install
|
|
|
|
script:
|
|
- |
|
|
set -o pipefail
|
|
xcodebuild -workspace TSKitiOSTestApp.xcworkspace -scheme TSKitiOSTestApp -sdk iphonesimulator build test
|
|
|
|
xcode_workspace: TSKitiOSTestApp.xcworkspace
|
|
xcode_scheme: TSKitiOSTestApp
|
|
|