Skip to content

Commit

Permalink
upgrade carthage version
Browse files Browse the repository at this point in the history
  • Loading branch information
OhKanghoon committed Aug 30, 2021
1 parent 06068c5 commit c82a63c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ jobs:
environment:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
- run:
name: Upgrade Carthage
command: brew upgrade carthage
- run:
name: Bootstrap Carthage
command: scripts/bootstrap-if-needed.sh
Expand Down
6 changes: 3 additions & 3 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
github "Alamofire/Alamofire" "5.4.3"
github "AliSoftware/OHHTTPStubs" "9.1.0"
github "Quick/Nimble" "v9.2.0"
github "Quick/Quick" "v4.0.0"
github "ReactiveCocoa/ReactiveSwift" "6.6.1"
github "ReactiveX/RxSwift" "6.2.0"
github "AliSoftware/OHHTTPStubs" "9.1.0"
github "Quick/Nimble" "v9.2.0"
github "Quick/Quick" "v4.0.0"
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ namespace :test do
Dir.mkdir("carthage_test")
File.write(File.join("carthage_test", "Cartfile"), "git \"file://#{Dir.pwd}\" \"HEAD\"")
Dir.chdir "carthage_test" do
sh "./scripts/carthage bootstrap --platform 'iOS'"
sh "../scripts/carthage.sh bootstrap --platform 'iOS'"
has_artifacts = Dir.glob("Carthage/Build/*").count > 0
raise("Carthage did not succeed") unless has_artifacts
end
Expand Down
2 changes: 1 addition & 1 deletion scripts/bootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh

carthage bootstrap
scripts/carthage.sh bootstrap
cp Cartfile.resolved Carthage

0 comments on commit c82a63c

Please sign in to comment.