This commit is contained in:
Nikita Bykov
2020-10-19 09:41:36 +03:00
7 changed files with 36 additions and 9 deletions

View File

@@ -1,7 +1,9 @@
#!/bin/bash
echo Installing aws...
brew install awscli
curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"
sudo installer -pkg AWSCLIV2.pkg -target /
rm -rf AWSCLIV2.pkg
echo Installing aws sam cli...
brew tap aws/tap

View File

@@ -4,6 +4,14 @@ source ~/utils/utils.sh
echo Updating RubyGems...
gem update --system
# Freeze xcodeproj 1.18.0 because version 1.19.0 contains breaking changes related to CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER flag
# Related issues:
# - https://github.com/CocoaPods/CocoaPods/issues/10153
# - https://github.com/actions/virtual-environments/issues/1804
# Need to revisit when Cocoapods 1.10.0 is released and added to VM
gem install xcodeproj -v 1.18.0
echo Installing xcode-install utility...
gem install xcode-install --force