forked from surfstudio/NodeKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
36 lines (31 loc) · 911 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
25
26
27
28
29
30
31
32
33
34
35
36
os: osx
osx_image: xcode10.2
language: obj-c
jobs:
include:
- stage: build_stage
name: Build
script:
- pod install --repo-update
- xcodebuild -workspace NodeKit.xcworkspace -scheme NodeKit
- stage: deploy
name: Deploy TestServer
install: true
script:
- sh ci/prepare_srv_deploy.sh
- sh ci/deploy_server.sh
- stage: test
name: Test and CodeCov Report
script:
- pod install --repo-update
- gem install xcpretty -N
- sh ci/prepare_tests.sh
- sh ci/run_tests.sh
- set -o pipefail
- bash <(curl -s https://codecov.io/bash) -t b62fa427-b5d3-4318-885d-e7783e1d527c
# - stage: docks_gen
# name: Generate Documentation
# script: ci/docks/dock_gen.sh
# - stage: docks_deploy
# name: Deploy Documentation
# script: ci/docks/deploy_docs.sh