Skip to content

Commit

Permalink
Added flutter installation
Browse files Browse the repository at this point in the history
  • Loading branch information
zippy1978 committed Dec 27, 2019
1 parent 045e564 commit ae28574
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Then use the following **.gitlab-ci.yml** file to perform a code analysis (and p
Here is a list of tools included in the box :
- Xcode
- fastlane
- flutter
- sonar-swift
- sonar-scanner
- xcpretty
Expand Down
8 changes: 7 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,16 @@ Vagrant.configure("2") do |config|
SHELL

# swiftlint (require Xcode to be installed)
config.vm.provision "shell", privileged: false, name: 'swiftlint installation', inline: <<-SHELL
config.vm.provision "shell", privileged: false, name: 'swiftlint installation', inline: <<-SHELL
/usr/local/bin/brew install swiftlint
SHELL

# flutter (require Xcode to be installed)
config.vm.provision "shell", privileged: false, name: 'flutter installation', inline: <<-SHELL
/usr/local/bin/brew tap MiderWong/flutter
/usr/local/bin/brew install flutter
SHELL

# Cocoapods repository setup
config.vm.provision "shell", privileged: false, name: 'pod repository setup', inline: <<-SHELL
pod setup
Expand Down

0 comments on commit ae28574

Please sign in to comment.