Skip to content

Commit 7e774b6

Browse files
committed
Use 10.2 image for pretest
Also some tidy
1 parent 8b371fa commit 7e774b6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/deploy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,12 @@ func podspec(repo: Repo, user: User, pkg: Package) -> (Substring, String) {
115115
return (name, """
116116
Pod::Spec.new do |s|
117117
s.name = '\(name)'
118+
s.author = { '\(user.name)': '\(user.email)' }
119+
s.source = { git: "https://github.com/\(slug).git", tag: '\(tag)' }
118120
s.version = '\(tag)'
119121
s.summary = '\(repo.description)'
120-
s.homepage = "https://github.com/\(slug)"
121122
s.license = '\(repo.license.spdx_id)'
122-
s.author = { '\(user.name)': '\(user.email)' }
123-
s.source = { git: "https://github.com/\(slug).git", tag: '\(tag)' }
123+
s.homepage = "https://github.com/\(slug)"
124124
s.social_media_url = 'https://twitter.com/\(owner)'
125125
s.osx.deployment_target = '10.10'
126126
s.ios.deployment_target = '8.0'

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ jobs:
6464
name: Check Linux tests are sync’d
6565
install: swift test --generate-linuxmain
6666
script: git diff --exit-code
67+
osx_image: xcode10.2
6768

6869
- stage: deploy
6970
name: Jazzy

0 commit comments

Comments
 (0)