mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
Fix vagrantfile
If you get an error, please run `vagrant box update`.
This commit is contained in:
parent
3366dfe32a
commit
0a7a190cd1
1
.gitignore
vendored
1
.gitignore
vendored
@ -17,6 +17,7 @@ test/logs
|
|||||||
coverage.txt
|
coverage.txt
|
||||||
docs/_build
|
docs/_build
|
||||||
docs/tools
|
docs/tools
|
||||||
|
*.log
|
||||||
|
|
||||||
scripts/wal2json/wal2json
|
scripts/wal2json/wal2json
|
||||||
scripts/cutWALUntil/cutWALUntil
|
scripts/cutWALUntil/cutWALUntil
|
||||||
|
30
Vagrantfile
vendored
30
Vagrantfile
vendored
@ -21,29 +21,31 @@ Vagrant.configure("2") do |config|
|
|||||||
|
|
||||||
# install base requirements
|
# install base requirements
|
||||||
apt-get update
|
apt-get update
|
||||||
|
apt-get upgrade -y
|
||||||
apt-get install -y --no-install-recommends wget curl jq \
|
apt-get install -y --no-install-recommends wget curl jq \
|
||||||
make shellcheck bsdmainutils psmisc
|
make shellcheck bsdmainutils psmisc
|
||||||
apt-get install -y docker-ce golang-1.9-go
|
apt-get install -y docker-ce golang-1.9-go
|
||||||
|
apt-get install -y language-pack-en
|
||||||
|
|
||||||
|
apt-get autoremove -y
|
||||||
|
|
||||||
# needed for docker
|
# needed for docker
|
||||||
usermod -a -G docker ubuntu
|
usermod -a -G docker vagrant
|
||||||
|
|
||||||
# use "EOF" not EOF to avoid variable substitution of $PATH
|
# set env variables
|
||||||
cat << "EOF" >> /home/ubuntu/.bash_profile
|
echo 'export PATH=$PATH:/usr/lib/go-1.9/bin:/home/vagrant/go/bin' >> /home/vagrant/.bash_profile
|
||||||
export PATH=$PATH:/usr/lib/go-1.9/bin:/home/ubuntu/go/bin
|
echo 'export GOPATH=/home/vagrant/go' >> /home/vagrant/.bash_profile
|
||||||
export GOPATH=/home/ubuntu/go
|
echo 'export LC_ALL=en_US.UTF-8' >> /home/vagrant/.bash_profile
|
||||||
export LC_ALL=en_US.UTF-8
|
|
||||||
cd go/src/github.com/tendermint/tendermint
|
|
||||||
EOF
|
|
||||||
|
|
||||||
mkdir -p /home/ubuntu/go/bin
|
mkdir -p /home/vagrant/go/bin
|
||||||
mkdir -p /home/ubuntu/go/src/github.com/tendermint
|
mkdir -p /home/vagrant/go/src/github.com/tendermint
|
||||||
ln -s /vagrant /home/ubuntu/go/src/github.com/tendermint/tendermint
|
ln -s /vagrant /home/vagrant/go/src/github.com/tendermint/tendermint
|
||||||
|
|
||||||
chown -R ubuntu:ubuntu /home/ubuntu/go
|
chown -R vagrant:vagrant /home/vagrant/go
|
||||||
chown ubuntu:ubuntu /home/ubuntu/.bash_profile
|
chown vagrant:vagrant /home/vagrant/.bash_profile
|
||||||
|
|
||||||
# get all deps and tools, ready to install/test
|
# get all deps and tools, ready to install/test
|
||||||
su - ubuntu -c 'cd /home/ubuntu/go/src/github.com/tendermint/tendermint && make get_tools && make get_vendor_deps'
|
source /home/vagrant/.bash_profile
|
||||||
|
cd /home/vagrant/go/src/github.com/tendermint/tendermint && make get_tools && make get_vendor_deps
|
||||||
SHELL
|
SHELL
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user