mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
Add dependency on Carthage
This commit is contained in:
parent
8113d00fe2
commit
eb64b17fe2
6 changed files with 16 additions and 0 deletions
1
Brewfile
Normal file
1
Brewfile
Normal file
|
@ -0,0 +1 @@
|
|||
brew "carthage"
|
2
Cartfile
Normal file
2
Cartfile
Normal file
|
@ -0,0 +1,2 @@
|
|||
github "Carthage/Commandant"
|
||||
github "antitypical/Result"
|
2
Cartfile.private
Normal file
2
Cartfile.private
Normal file
|
@ -0,0 +1,2 @@
|
|||
github "Quick/Quick"
|
||||
github "Quick/Nimble"
|
4
Cartfile.resolved
Normal file
4
Cartfile.resolved
Normal 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"
|
|
@ -3,6 +3,8 @@
|
|||
main() {
|
||||
echo "==> 👢 Bootstrapping"
|
||||
bundle install
|
||||
brew bundle
|
||||
carthage bootstrap --platform macOS --cache-builds
|
||||
|
||||
script/sort
|
||||
}
|
||||
|
|
|
@ -7,6 +7,11 @@ CONFIG="Release"
|
|||
|
||||
main() {
|
||||
script/clean
|
||||
|
||||
carthage build \
|
||||
--platform macOS \
|
||||
--cache-builds \
|
||||
--configuration "$CONFIG"
|
||||
|
||||
xcodebuild -project "$PROJECT" \
|
||||
-scheme "$SCHEME" \
|
||||
|
|
Loading…
Reference in a new issue