forked from getsentry/sentry-cocoa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
50 lines (42 loc) · 875 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
branches:
only:
- master
- /^release\/.+$/
language: objective-c
osx_image: xcode9.4
addons:
homebrew:
packages:
- swiftlint
update: true
cache:
- bundler
rvm:
- 2.4
script: travis_retry .travis/run.sh
env:
matrix:
- LANE=lint
- LANE=test
# - LANE=pod
before_install:
- gem update --system
- gem install bundler
jobs:
include:
env: LANE=test
script: .travis/run.sh
env: LANE=deploy
script: .travis/stage-carthage.sh
after_success:
- npm install -g @zeus-ci/cli
- zeus upload -t "application/zip+carthage" Sentry.framework.zip
notifications:
webhooks:
urls:
- https://zeus.ci/hooks/f24f7238-0798-11ea-a9f5-b2c6ac7e8a44/public/provider/travis/webhook
on_success: always
on_failure: always
on_start: always
on_cancel: always
on_error: always