Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit adb025f

Browse files
committedApr 10, 2018
Xcode 9.3 CI jobs.
1 parent f06d9a7 commit adb025f

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed
 

‎.swift-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

‎.travis.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: objective-c
22
sudo: false
3-
osx_image: xcode9.1
3+
osx_image: xcode9.3
44

55
matrix:
66
include:
@@ -13,11 +13,13 @@ matrix:
1313
- os: osx
1414
env: ACTION=test_tvos10
1515
- os: osx
16-
osx_image: xcode8.3
17-
env: ACTION=test_ios10_legacy
16+
env: ACTION=test_ios_swift3
1817
- os: osx
19-
osx_image: xcode8.3
20-
env: ACTION=test_tvos10_legacy
18+
env: ACTION=test_tvos_swift3
19+
- os: osx
20+
env: ACTION=pod_lint
21+
- os: osx
22+
env: ACTION=carthage_build
2123

2224
script:
2325
- bundle exec fastlane $ACTION

‎fastlane/Fastfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
fastlane_version "1.98.0"
22

33
lane :test_ios11 do
4-
scan(devices: ["iPhone 8 (11.1)"])
4+
scan(devices: ["iPhone 8 (11.3)"])
55
sh "bash ../codecov.sh"
66
end
77

88
lane :test_ios10 do
9-
scan(devices: ["iPhone 7 (10.3)"])
9+
scan(devices: ["iPhone 7 Plus (10.3.1)"])
1010
end
1111

1212
lane :test_tvos11 do
13-
scan(devices: ["Apple TV 1080p (11.1)"])
13+
scan(devices: ["Apple TV 4K"])
1414
end
1515

1616
lane :test_tvos10 do
1717
scan(device: "Apple TV 1080p (10.2)")
1818
end
1919

20-
lane :test_ios10_legacy do
21-
scan(devices: ["iPhone 6s (10.3)"], xcargs: "SWIFT_VERSION=3.0")
20+
lane :test_ios_swift3 do
21+
scan(devices: ["iPhone 8 (11.3)"], xcargs: "SWIFT_VERSION=3.0")
2222
end
2323

24-
lane :test_tvos10_legacy do
25-
scan(devices: ["Apple TV 1080p (10.2)"], xcargs: "SWIFT_VERSION=3.0")
24+
lane :test_tvos_swift3 do
25+
scan(devices: ["Apple TV 4K"], xcargs: "SWIFT_VERSION=3.0")
2626
end
2727

2828
lane :pod_lint do

0 commit comments

Comments
 (0)
Please sign in to comment.