Revision b467515719e686e4678e6da4e102f32a491b85a0 authored by Ethan Buchman on 10 July 2017, 20:22:09 UTC, committed by GitHub on 10 July 2017, 20:22:09 UTC
2 parent s 7f3c697 + 75df0d9
Raw File
Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
  config.vm.box = "ubuntu/trusty64"

  config.vm.provider "virtualbox" do |v|
    v.memory = 4096
    v.cpus = 2
  end

  config.vm.provision "shell", inline: <<-SHELL
    apt-get update
    apt-get install -y --no-install-recommends wget curl jq shellcheck bsdmainutils psmisc

    wget -qO- https://get.docker.com/ | sh
    usermod -a -G docker vagrant
    apt-get autoremove -y

    curl -O https://storage.googleapis.com/golang/go1.8.linux-amd64.tar.gz
    tar -xvf go1.8.linux-amd64.tar.gz
    rm -rf /usr/local/go
    mv go /usr/local
    rm -f go1.8.linux-amd64.tar.gz
    mkdir -p /home/vagrant/go/bin
    echo 'export PATH=$PATH:/usr/local/go/bin:/home/vagrant/go/bin' >> /home/vagrant/.bash_profile
    echo 'export GOPATH=/home/vagrant/go' >> /home/vagrant/.bash_profile

    echo 'export LC_ALL=en_US.UTF-8' >> /home/vagrant/.bash_profile

    mkdir -p /home/vagrant/go/src/github.com/tendermint
    ln -s /vagrant /home/vagrant/go/src/github.com/tendermint/tendermint

    chown -R vagrant:vagrant /home/vagrant/go

    su - vagrant -c 'cd /home/vagrant/go/src/github.com/tendermint/tendermint && make get_vendor_deps'
  SHELL
end
back to top