Skip to content

Commit a5933f3

Browse files
committed
Update Travis configuration for Xcode 9.2.
1 parent 15116f9 commit a5933f3

7 files changed

+21
-16
lines changed

.travis.yml

+10-8
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,20 @@ env:
99
- FASTLANE_LANE=ci_commit
1010
matrix:
1111
include:
12-
- osx_image: xcode8
12+
- osx_image: xcode9.2
1313
env: FASTLANE_LANE=code_coverage FASTLANE_ENV=default
14-
- osx_image: xcode8
15-
env: FASTLANE_ENV=ios10_xcode8
16-
- osx_image: xcode8
17-
env: FASTLANE_ENV=tvos10_xcode8
18-
- osx_image: xcode8
14+
- osx_image: xcode9.2
15+
env: FASTLANE_ENV=ios11_xcode9
16+
- osx_image: xcode9.2
17+
env: FASTLANE_ENV=tvos11_xcode9
18+
- osx_image: xcode9.2
1919
env: FASTLANE_ENV=osx
20+
- osx_image: xcode8.3
21+
env: FASTLANE_ENV=ios10_xcode8
2022
- osx_image: xcode7.3
21-
env: FASTLANE_ENV=ios93_xcode73
23+
env: FASTLANE_ENV=ios9_xcode7
2224
- osx_image: xcode7.3
23-
env: FASTLANE_ENV=ios81_xcode73
25+
env: FASTLANE_ENV=ios8_xcode7
2426
before_install:
2527
# Force bundler 1.12.5 because version 1.13 has issues, see https://github.com/fastlane/fastlane/issues/6065#issuecomment-246044617
2628
- gem uninstall bundler -v '>1.12.5' --force || echo "bundler >1.12.5 is not installed"

fastlane/.env.default

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
AF_IOS_SDK=iphonesimulator10.0
2-
AF_MAC_SDK=macosx10.11
3-
AF_TVOS_SDK=appletvsimulator10.0
1+
AF_IOS_SDK=iphonesimulator11.2
2+
AF_MAC_SDK=macosx10.13
3+
AF_TVOS_SDK=appletvsimulator11.2
44

55
AF_CONFIGURATION=Release
66

@@ -11,4 +11,4 @@ SCAN_OUTPUT_DIRECTORY=fastlane/test-output
1111

1212
EXAMPLE_WORKSPACE=$AF_WORKSPACE
1313
EXAMPLE_SCHEME=$AF_IOS_EXAMPLE_SCHEME
14-
EXAMPLE_DESTINATION="platform=iOS Simulator,name=iPhone 7"
14+
EXAMPLE_DESTINATION="platform=iOS Simulator,name=iPhone 8"

fastlane/.env.ios10_xcode8

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
SCAN_DEVICE="iPhone 7"
2-
SCAN_SDK=$AF_IOS_SDK
3-
EXAMPLE_DESTINATION="platform=iOS Simulator,name=iPhone 7"
2+
SCAN_SDK="iphonesimulator10.3"
3+
EXAMPLE_DESTINATION="platform=iOS Simulator,name=iPhone 7"

fastlane/.env.ios11_xcode93

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SCAN_DEVICE="iPhone 8"
2+
SCAN_SDK=$AF_IOS_SDK
3+
EXAMPLE_DESTINATION="platform=iOS Simulator,name=iPhone 8"
File renamed without changes.
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SCAN_SCHEME=$AF_TVOS_FRAMEWORK_SCHEME
2-
SCAN_DEVICE="Apple TV 1080p"
2+
SCAN_DEVICE="Apple TV 4K"
33
SCAN_SDK=$AF_TVOS_SDK
44

55
EXAMPLE_SCHEME=$AF_TVOS_EXAMPLE_SCHEME
6-
EXAMPLE_DESTINATION="platform=tvOS Simulator,name=Apple TV 1080p"
6+
EXAMPLE_DESTINATION="platform=tvOS Simulator,name=Apple TV 4K"

0 commit comments

Comments
 (0)