From 454798a2c439aae4f179083f3758f0b2b0f8c145 Mon Sep 17 00:00:00 2001 From: Dominik Ritter Date: Tue, 21 Mar 2017 01:33:54 +0100 Subject: Fix a little problem in BSD On BSD ZSH is installed on a different location than on linux. So we link it there to make sure our later scripts will work. --- test-bsd-vm/bootstrap.sh | 1 + 1 file changed, 1 insertion(+) (limited to 'test-bsd-vm/bootstrap.sh') diff --git a/test-bsd-vm/bootstrap.sh b/test-bsd-vm/bootstrap.sh index f78b3078..a28935ea 100644 --- a/test-bsd-vm/bootstrap.sh +++ b/test-bsd-vm/bootstrap.sh @@ -3,6 +3,7 @@ # Install ZSH sudo pkg install -y zsh sudo chsh -s `which zsh` vagrant +sudo ln -s /usr/local/bin/zsh /usr/bin/zsh # Install git sudo pkg install -y git \ No newline at end of file -- cgit v1.2.3 From b2342f90e9131f61064a9c08f33d78903a157193 Mon Sep 17 00:00:00 2001 From: Dominik Ritter Date: Tue, 21 Mar 2017 01:41:47 +0100 Subject: Install more dependencies in VMs --- test-bsd-vm/bootstrap.sh | 6 +++++- test-vm/bootstrap.sh | 10 ++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) (limited to 'test-bsd-vm/bootstrap.sh') diff --git a/test-bsd-vm/bootstrap.sh b/test-bsd-vm/bootstrap.sh index a28935ea..ba27ffb3 100644 --- a/test-bsd-vm/bootstrap.sh +++ b/test-bsd-vm/bootstrap.sh @@ -6,4 +6,8 @@ sudo chsh -s `which zsh` vagrant sudo ln -s /usr/local/bin/zsh /usr/bin/zsh # Install git -sudo pkg install -y git \ No newline at end of file +sudo pkg install -y git +# Install mercurial +sudo pkg install -y mercurial +# Install subversion +sudo pkg install -y subversion \ No newline at end of file diff --git a/test-vm/bootstrap.sh b/test-vm/bootstrap.sh index 9651c4eb..f680d4b8 100644 --- a/test-vm/bootstrap.sh +++ b/test-vm/bootstrap.sh @@ -7,3 +7,13 @@ 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 \ No newline at end of file -- cgit v1.2.3