-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
24 lines (24 loc) · 1000 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
matrix:
include:
- os: osx
osx_image: xcode10.3
language: objective-c
skip-cleanup: true
env: "macOS"
before_install:
- gem install jazzy
script:
- set -o pipefail && xcodebuild -scheme Sourcing -destination "platform=tvOS Simulator,name=Apple TV" test | xcpretty
- set -o pipefail && xcodebuild -scheme Sourcing -destination "platform=watchOS Simulator,name=Apple Watch - 38mm" build | xcpretty
- set -o pipefail && xcodebuild -scheme Sourcing -destination "platform=iOS Simulator,name=iPhone SE" test | xcpretty
- carthage build --no-skip-current
- jazzy --clean --author "Lukas Schmidt" --github_url https://github.com/lightsprint09/Sourcing --module Sourcing --output docs
after_success:
- bash <(curl -s https://codecov.io/bash)
deploy:
provider: pages
local_dir: docs
skip_cleanup: true
github_token: $GITHUB_TOKEN
on:
branch: master