-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automating publication of new releases (closes #337)
- Loading branch information
Showing
8 changed files
with
277 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
coverage_service: coveralls | ||
xcodeproj: Snowplow.xcodeproj | ||
workspace: Snowplow.xcworkspace | ||
scheme: Snowplow | ||
scheme: Snowplow-iOS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,50 @@ | ||
language: objective-c | ||
osx_image: xcode10.2 | ||
osx_image: xcode11 | ||
|
||
xcode_workspace: Snowplow.xcworkspace | ||
|
||
stages: | ||
- lint | ||
- test | ||
- name: deploy | ||
if: tag IS present | ||
|
||
jobs: | ||
include: | ||
- stage: lint | ||
install: gem install cocoapods | ||
script: pod lib lint --allow-warnings | ||
|
||
# FIXME: This test fails due to platform specific deps | ||
# - <<: *test | ||
# stage: test | ||
# name: OSX / Xcode 11 | ||
# xcode_scheme: Snowplow-macOS | ||
# xcode_destination: platform=macOS | ||
# before_script: | ||
# - carthage update --platform macOS | ||
# - pod install | ||
|
||
- &test | ||
stage: test | ||
name: iOS / Xcode 11 | ||
xcode_scheme: Snowplow-iOS | ||
xcode_destination: platform=iOS Simulator,OS=12.1,name=iPhone X | ||
before_script: | ||
- carthage update --platform iOS | ||
- pod install | ||
after_success: | ||
- gem install slather | ||
- slather | ||
|
||
- stage: deploy | ||
script: pod trunk push --verbose | ||
os: ios | ||
osx_image: xcode11 | ||
language: objective-c | ||
on: | ||
condition: $(< VERSION) == $TRAVIS_TAG | ||
tags: true | ||
|
||
env: | ||
- TEST_PLATFORM="platform=iOS Simulator,OS=12.1,name=iPhone XR" | ||
rvm: | ||
- 2.3.7 | ||
before_install: | ||
- gem install slather | ||
- gem install xcpretty -N --no-document | ||
install: | ||
- ./.travis/install.sh | ||
script: ./.travis/test.sh | ||
after_success: slather | ||
secure: FfsA8B/GHFnIst46Z9Z2VNzd38NTsRp/DLF3IGDWTZAUFMRqVVu2fC/KmfOMH47XMqhtdvOkAjCf0K9BzDrpEwypAz4h5BoZPR7x+sz5eZ91jSKGAK7R8JWvj2hihoPSCc+ytXQwQFZYzP1hM6Wfyc+37riU7w00eJEz3vexD3w= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.