diff --git a/.gitignore b/.gitignore index f5ba54803..956ba27ba 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,5 @@ cmd/drone/drone cmd/droned/droned deb/drone/usr/local/bin/drone deb/drone/usr/local/bin/droned + +.vagrant diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 000000000..e6ff401e1 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,87 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! +VAGRANTFILE_API_VERSION = "2" + +Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| + # Drone supports 12.04 64bit and 13.04 64bit + config.vm.box = "precise64" + config.vm.box_url = "http://files.vagrantup.com/precise64.box" + + # Forward keys from SSH agent rather than copypasta + config.ssh.forward_agent = true + + # FIXME: Maybe this is enough + config.vm.provider "virtualbox" do |v| + v.customize ["modifyvm", :id, "--memory", "1024"] + end + + # Drone by default runs on port 80. Forward from host to guest + config.vm.network :forwarded_port, guest: 8080, host: 8080 + config.vm.network :private_network, ip: "192.168.10.101" + + # Sync this repo into what will be $GOPATH + config.vm.synced_folder ".", "/opt/go/src/github.com/drone/drone" + + # system-level initial setup + config.vm.provision "shell", inline: <<-EOF + set -e + + # System packages + echo "Installing Base Packages" + export DEBIAN_FRONTEND=noninteractive + sudo apt-get update -qq + sudo apt-get install -qqy --force-yes build-essential bzr git mercurial vim + + + # Install Go + GOVERSION="1.2" + GOTARBALL="go${GOVERSION}.linux-amd64.tar.gz" + export GOROOT=/usr/local/go + export GOPATH=/opt/go + export PATH=$PATH:$GOROOT/bin:$GOPATH/bin + + echo "Installing Go $GOVERSION" + if [ ! $(which go) ]; then + echo " Downloading $GOTARBALL" + wget --quiet --directory-prefix=/tmp https://go.googlecode.com/files/$GOTARBALL + + echo " Extracting $GOTARBALL to $GOROOT" + sudo tar -C /usr/local -xzf /tmp/$GOTARBALL + + echo " Configuring GOPATH" + sudo mkdir -p $GOPATH/src $GOPATH/bin $GOPATH/pkg + sudo chown -R vagrant $GOPATH + + echo " Configuring env vars" + echo "export PATH=\$PATH:$GOROOT/bin:$GOPATH/bin" | sudo tee /etc/profile.d/golang.sh > /dev/null + echo "export GOROOT=$GOROOT" | sudo tee --append /etc/profile.d/golang.sh > /dev/null + echo "export GOPATH=$GOPATH" | sudo tee --append /etc/profile.d/golang.sh > /dev/null + fi + + + # Install drone + echo "Building Drone" + cd $GOPATH/src/github.com/drone/drone + make deps + make embed + make build + + + # Auto cd to drone install dir + echo "cd $GOPATH/src/github.com/drone/drone" >> /home/vagrant/.bashrc + + + # Cleanup + sudo apt-get autoremove + + + echo <