Vagrant updates

* Add go tools to provision script
* Sync project folder
* Fix ruby styling issues
* Add --cover flag to test commands
This commit is contained in:
Chavez 2014-12-04 21:24:05 -08:00
parent 3d3c48bd50
commit 0473d6aa1e
2 changed files with 18 additions and 14 deletions

View File

@ -16,10 +16,10 @@ deps:
test: deps test: deps
./scripts/verify_no_uuid.sh ./scripts/verify_no_uuid.sh
go list ./... | xargs -n1 go test go list ./... | xargs -n1 go test --cover
integ: integ:
go list ./... | INTEG_TESTS=yes xargs -n1 go test go list ./... | INTEG_TESTS=yes xargs -n1 go test -test --cover
format: deps format: deps
@echo "--> Running go fmt" @echo "--> Running go fmt"

28
Vagrantfile vendored
View File

@ -2,9 +2,9 @@
# vi: set ft=ruby : # vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! # Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2" VAGRANTFILE_API_VERSION = '2'
$script = <<SCRIPT @script = <<SCRIPT
SRCROOT="/opt/go" SRCROOT="/opt/go"
# Install Go # Install Go
@ -29,23 +29,27 @@ sudo chown -R vagrant:vagrant /opt/gopath
# Install git # Install git
sudo apt-get install -y git-core sudo apt-get install -y git-core
# Install go tools
go get code.google.com/p/go.tools/cmd/cover
SCRIPT SCRIPT
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provision "shell", inline: $script config.vm.provision 'shell', inline: @script
config.vm.synced_folder '.', '/opt/gopath/src/github.com/hashicorp/consul'
["vmware_fusion", "vmware_workstation"].each do |p| %w[vmware_fusion vmware_workstation].each do |_|
config.vm.provider "p" do |v| config.vm.provider 'p' do |v|
v.vmx["memsize"] = "2048" v.vmx['memsize'] = '2048'
v.vmx["numvcpus"] = "2" v.vmx['numvcpus'] = '2'
v.vmx["cpuid.coresPerSocket"] = "1" v.vmx['cpuid.coresPerSocket'] = '1'
end end
end end
config.vm.define "64bit" do |n1| config.vm.define '64bit' do |n1|
n1.vm.box = "chef/ubuntu-10.04" n1.vm.box = 'chef/ubuntu-10.04'
end end
config.vm.define "32bit" do |n2| config.vm.define '32bit' do |n2|
n2.vm.box = "chef/ubuntu-10.04-i386" n2.vm.box = 'chef/ubuntu-10.04-i386'
end end
end end