Skip to content

Commit 9f77e28

Browse files
committed
only do builds for now
1 parent 52b311a commit 9f77e28

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.travis.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,21 @@ podfile: Example/Podfile
99
xcode_workspace: SwiftDog.xcworkspace
1010
xcode_scheme: SwiftDog-Example
1111
xcode_sdk: iphonesimulator11.3
12+
13+
branches:
14+
only:
15+
- dev
16+
- master
17+
1218
before_install:
1319
- gem install cocoapods # Since Travis is not always on latest version
1420
- gem install xcpretty -N
1521
- pod repo update
1622
- pod install --project-directory=Example
23+
1724
script:
1825
- set -o pipefail
19-
- travis_retry xcodebuild -workspace Example/SwiftDog.xcworkspace -scheme SwiftDog-Example -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 8,OS=11.3' CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO clean test | xcpretty -c
26+
- travis_retry xcodebuild -workspace Example/SwiftDog.xcworkspace -scheme SwiftDog-Example -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 8,OS=11.3' CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO | xcpretty -c
27+
2028
after_script:
2129
- pod lib lint

0 commit comments

Comments
 (0)