forked from realm/realm-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (37 loc) · 1.52 KB
/
.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
language: objective-c
osx_image: xcode12.4
branches:
only: master
script: placeholder # workaround for https://github.com/travis-ci/travis-ci/issues/4681
matrix:
include:
- script: ./build.sh verify-swiftlint
env: JOB=verify-swiftlint
before_install: brew update; brew outdated swiftlint || brew upgrade swiftlint
- script: ./build.sh verify-docs
env: JOB=verify-docs
before_install: gem install jazzy
- script: ./build.sh verify-osx-swift
env: JOB=verify-osx-swift
- script: ./build.sh test-tvos
env: JOB=test-tvos
- script: ./build.sh verify-osx
env: JOB=verify-osx
# These jobs are disabled pending work to fix their configuration when running
# on the Travis machines, without also breaking our internal CI system.
# - script: ./build.sh test-ios-swift
# env: JOB=test-ios-swift
# - script: ./build.sh test-ios-static
# env: JOB=test-ios-static
############################################################################
# These jobs pass but are disabled because they occasionally make Travis
# exceed its maximum of 50 minutes in aggregate for matrix builds.
############################################################################
# - script: ./build.sh verify-ios-dynamic
# env: JOB=verify-ios-dynamic
# - script: ./build.sh verify-osx-encryption
# env: JOB=verify-osx-encryption
exclude:
- script: placeholder # workaround for https://github.com/travis-ci/travis-ci/issues/4681
notifications:
email: false