Skip to content

Commit 5f493c0

Browse files
committed
Downsize the build matrix on Travis CI
1 parent d1ac41c commit 5f493c0

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.travis.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@ language: objective-c
22
osx_image: xcode8
33
matrix:
44
include:
5-
- env: BUILD=9.3
6-
script: bundle exec rake ci:build[9.3]
7-
- env: BUILD=latest
8-
script: bundle exec rake ci:build[latest]
9-
- env: BUILD=carthage
10-
script: make carthage
11-
after_script:
12-
- make documentation
5+
- env: VERSION=9.3
6+
- env: VERSION=latest
7+
script:
8+
- bundle exec rake ci:build[$VERSION]
9+
- make -B carthage
10+
- make -B docs
1311
cache:
1412
bundler: true
1513
directories:
@@ -21,6 +19,8 @@ install:
2119
- make install
2220
before_script:
2321
- xcodebuild -workspace ICInputAccessory.xcworkspace -list
22+
script:
23+
- bundle exec rake ci:build[$VERSION]
2424
notifications:
2525
email: false
2626
slack:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ setup: brew-install
1818
carthage:
1919
set -o pipefail && carthage build --no-skip-current --verbose | xcpretty
2020

21-
documentation:
21+
docs:
2222
bundle exec jazzy --config .jazzy.yml

0 commit comments

Comments
 (0)