Add dependency on Carthage

This commit is contained in:
Tony Arnold 2018-09-05 09:45:01 +10:00
parent 8113d00fe2
commit eb64b17fe2
No known key found for this signature in database
GPG key ID: E1F1A62FBE87E583
6 changed files with 16 additions and 0 deletions

1
Brewfile Normal file
View file

@ -0,0 +1 @@
brew "carthage"

2
Cartfile Normal file
View file

@ -0,0 +1,2 @@
github "Carthage/Commandant"
github "antitypical/Result"

2
Cartfile.private Normal file
View file

@ -0,0 +1,2 @@
github "Quick/Quick"
github "Quick/Nimble"

4
Cartfile.resolved Normal file
View file

@ -0,0 +1,4 @@
github "Carthage/Commandant" "0.15.0"
github "Quick/Nimble" "v7.3.0"
github "Quick/Quick" "v1.3.1"
github "antitypical/Result" "4.0.0"

View file

@ -3,6 +3,8 @@
main() {
echo "==> 👢 Bootstrapping"
bundle install
brew bundle
carthage bootstrap --platform macOS --cache-builds
script/sort
}

View file

@ -7,6 +7,11 @@ CONFIG="Release"
main() {
script/clean
carthage build \
--platform macOS \
--cache-builds \
--configuration "$CONFIG"
xcodebuild -project "$PROJECT" \
-scheme "$SCHEME" \