This repository was archived by the owner on Aug 26, 2021. It is now read-only.
File tree 3 files changed +13
-14
lines changed
3 files changed +13
-14
lines changed Original file line number Diff line number Diff line change 6
6
BUNDLE_PATH : vendor/bundle
7
7
FL_OUTPUT_DIR : output
8
8
macos :
9
- xcode : " 10.2.0 "
9
+ xcode : " 10.2.1 "
10
10
working_directory : ~/VimeoNetworking
11
11
shell : /bin/bash --login -o pipefail
12
-
12
+
13
13
steps :
14
14
- checkout
15
-
15
+
16
16
- restore_cache :
17
17
key : v1-gems-{{ checksum "Gemfile.lock" }}
18
18
19
- - run :
19
+ - run :
20
20
name : Set Ruby version
21
21
command : echo "ruby-2.4" > ~/.ruby-version
22
22
23
- - run :
23
+ - run :
24
24
name : Install bundler dependencies
25
25
command : bundle install --path vendor/bundle
26
26
27
- - run :
27
+ - run :
28
28
name : Build and run iOS tests
29
29
command : bundle exec fastlane ios test
30
30
environment :
@@ -47,4 +47,3 @@ workflows:
47
47
build :
48
48
jobs :
49
49
- build-and-test
50
-
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
3
3
s . name = "VimeoNetworking"
4
- s . version = "4.0 .0"
4
+ s . version = "4.1 .0"
5
5
s . summary = "A library for interacting with the Vimeo API."
6
6
s . description = "An iOS/tvOS library for interacting with the Vimeo API."
7
7
s . homepage = "https://github.com/vimeo/VimeoNetworking"
Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ default_platform :ios
17
17
18
18
platform :ios do
19
19
before_all do
20
- ensure_xcode_version ( version : "10.2.0 " )
20
+ ensure_xcode_version ( version : "10.2.1 " )
21
21
end
22
22
23
23
desc "buid the example project"
24
24
lane :build_example do |options |
25
-
25
+
26
26
# cant use gym: https://github.com/fastlane/fastlane/issues/1816
27
27
xcodebuild (
28
28
workspace : "VimeoNetworking.xcworkspace" ,
@@ -60,12 +60,12 @@ platform :ios do
60
60
end
61
61
62
62
desc "bumps the project and podspec version"
63
- lane :version_bump do |options |
63
+ lane :version_bump do |options |
64
64
65
65
bump_type = options [ :bump_type ]
66
66
version_number = options [ :version_number ]
67
67
if bump_type . nil? && version_number . nil?
68
- UI . user_error! ( "version_bump requires you to provide a bump_type [patch|minor|major] or specific version_number. Please try again." )
68
+ UI . user_error! ( "version_bump requires you to provide a bump_type [patch|minor|major] or specific version_number. Please try again." )
69
69
end
70
70
71
71
increment_version_number (
@@ -82,11 +82,11 @@ platform :ios do
82
82
83
83
84
84
after_all do |lane |
85
-
85
+
86
86
end
87
87
88
88
error do |lane , exception |
89
-
89
+
90
90
end
91
91
end
92
92
You can’t perform that action at this time.
0 commit comments