You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
487 B
19 lines
487 B
7 years ago
|
#!/bin/sh
|
||
|
|
||
|
#sudo apt-get update
|
||
|
|
||
|
sudo apt-get install -y curl
|
||
|
sudo apt-get install -y git
|
||
|
|
||
|
sudo apt-get install -y zsh
|
||
|
sudo chsh -s $(which zsh) vagrant
|
||
|
|
||
|
# Install mercurial
|
||
|
sudo apt-get install -y mercurial
|
||
|
# Install Subversion
|
||
|
sudo apt-get install -y subversion
|
||
|
# install golang
|
||
|
echo 'golang-go golang-go/dashboard boolean false' | sudo debconf-set-selections
|
||
|
sudo apt-get install -y golang
|
||
|
# Install dependencies for tests
|
||
|
sudo apt-get install -y jq node ruby python python-virtualenv
|