From 7e774b6cf56f3f516df373718bf8fc2b7a9b373c Mon Sep 17 00:00:00 2001 From: Max Howell Date: Wed, 6 Mar 2019 12:54:46 -0500 Subject: [PATCH] Use 10.2 image for pretest Also some tidy --- .github/deploy | 8 ++++---- .travis.yml | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/deploy b/.github/deploy index 07c998f..bcc52f3 100755 --- a/.github/deploy +++ b/.github/deploy @@ -115,12 +115,12 @@ func podspec(repo: Repo, user: User, pkg: Package) -> (Substring, String) { return (name, """ Pod::Spec.new do |s| s.name = '\(name)' - s.version = '\(tag)' - s.summary = '\(repo.description)' - s.homepage = "https://github.com/\(slug)" - s.license = '\(repo.license.spdx_id)' s.author = { '\(user.name)': '\(user.email)' } s.source = { git: "https://github.com/\(slug).git", tag: '\(tag)' } + s.version = '\(tag)' + s.summary = '\(repo.description)' + s.license = '\(repo.license.spdx_id)' + s.homepage = "https://github.com/\(slug)" s.social_media_url = 'https://twitter.com/\(owner)' s.osx.deployment_target = '10.10' s.ios.deployment_target = '8.0' diff --git a/.travis.yml b/.travis.yml index af66c76..bf8522b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -64,6 +64,7 @@ jobs: name: Check Linux tests are sync’d install: swift test --generate-linuxmain script: git diff --exit-code + osx_image: xcode10.2 - stage: deploy name: Jazzy