Skip to content
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.

Commit

Permalink
Xcode 10.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rogerio de Paula Assis committed Nov 15, 2019
1 parent 1022679 commit 6a7c269
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
13 changes: 6 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ jobs:
BUNDLE_PATH: vendor/bundle
FL_OUTPUT_DIR: output
macos:
xcode: "10.2.0"
xcode: "10.2.1"
working_directory: ~/VimeoNetworking
shell: /bin/bash --login -o pipefail

steps:
- checkout

- restore_cache:
key: v1-gems-{{ checksum "Gemfile.lock" }}

- run:
- run:
name: Set Ruby version
command: echo "ruby-2.4" > ~/.ruby-version

- run:
- run:
name: Install bundler dependencies
command: bundle install --path vendor/bundle

- run:
- run:
name: Build and run iOS tests
command: bundle exec fastlane ios test
environment:
Expand All @@ -47,4 +47,3 @@ workflows:
build:
jobs:
- build-and-test

2 changes: 1 addition & 1 deletion VimeoNetworking.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "VimeoNetworking"
s.version = "4.0.0"
s.version = "4.1.0"
s.summary = "A library for interacting with the Vimeo API."
s.description = "An iOS/tvOS library for interacting with the Vimeo API."
s.homepage = "https://github.com/vimeo/VimeoNetworking"
Expand Down
12 changes: 6 additions & 6 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ default_platform :ios

platform :ios do
before_all do
ensure_xcode_version(version: "10.2.0")
ensure_xcode_version(version: "10.2.1")
end

desc "buid the example project"
lane :build_example do |options|

# cant use gym: https://github.com/fastlane/fastlane/issues/1816
xcodebuild(
workspace: "VimeoNetworking.xcworkspace",
Expand Down Expand Up @@ -60,12 +60,12 @@ platform :ios do
end

desc "bumps the project and podspec version"
lane :version_bump do |options|
lane :version_bump do |options|

bump_type = options[:bump_type]
version_number = options[:version_number]
if bump_type.nil? && version_number.nil?
UI.user_error!("version_bump requires you to provide a bump_type [patch|minor|major] or specific version_number. Please try again.")
UI.user_error!("version_bump requires you to provide a bump_type [patch|minor|major] or specific version_number. Please try again.")
end

increment_version_number(
Expand All @@ -82,11 +82,11 @@ platform :ios do


after_all do |lane|

end

error do |lane, exception|

end
end

Expand Down

0 comments on commit 6a7c269

Please sign in to comment.