Skip to content

Commit 1946413

Browse files
committed
Updating travis build matrix to support older versions of Xcode
1 parent 2308840 commit 1946413

File tree

5 files changed

+26
-14
lines changed

5 files changed

+26
-14
lines changed

.travis.yml

+20-10
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,26 @@ env:
66
- LC_CTYPE=en_US.UTF-8
77
- LANG=en_US.UTF-8
88
- FASTLANE_LANE=ci_commit
9-
matrix:
10-
- FASTLANE_LANE=code_coverage FASTLANE_ENV=default
11-
- FASTLANE_ENV=ios81
12-
- FASTLANE_ENV=ios82
13-
- FASTLANE_ENV=ios83
14-
- FASTLANE_ENV=ios84
15-
- FASTLANE_ENV=ios90
16-
- FASTLANE_ENV=ios91
17-
- FASTLANE_ENV=osx
18-
- FASTLANE_ENV=tvos90
9+
matrix:
10+
include:
11+
- osx_image: xcode7.1
12+
env: FASTLANE_LANE=code_coverage FASTLANE_ENV=default
13+
- osx_image: xcode7.1
14+
env: FASTLANE_ENV=ios82
15+
- osx_image: xcode7.1
16+
env: FASTLANE_ENV=ios83
17+
- osx_image: xcode7.1
18+
env: FASTLANE_ENV=ios84
19+
- osx_image: xcode7.1
20+
env: FASTLANE_ENV=ios91
21+
- osx_image: xcode7.1
22+
env: FASTLANE_ENV=osx
23+
- osx_image: xcode7.1
24+
env: FASTLANE_ENV=tvos90
25+
- osx_image: xcode7
26+
env: FASTLANE_ENV=ios81_xcode7
27+
- osx_image: xcode7
28+
env: FASTLANE_ENV=ios90_xcode7
1929
before_install:
2030
- gem install fastlane --no-rdoc --no-ri --no-document --quiet
2131
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet

fastlane/.env.ios81

-2
This file was deleted.

fastlane/.env.ios81_xcode7

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SCAN_DESTINATION="OS=8.1,name=iPhone 4S"
2+
EXAMPLE_DESTINATION=$SCAN_DESTINATION
3+
SCAN_SDK=iphonesimulator9.0

fastlane/.env.ios90

-2
This file was deleted.

fastlane/.env.ios90_xcode7

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SCAN_DESTINATION="OS=9.0,name=iPhone 6 Plus"
2+
EXAMPLE_DESTINATION=$SCAN_DESTINATION
3+
SCAN_SDK=iphonesimulator9.0

0 commit comments

Comments
 (0)