X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/797c2d1e74a14d8d52d963f1efad9be53fca5f5f..5141ac14f6c8502aee8a88074159a68222054527:/Vagrantfile?ds=sidebyside diff --git a/Vagrantfile b/Vagrantfile index 15d66e9e..b9d618e2 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -23,7 +23,16 @@ Vagrant.configure("2") do |config| end end - config.vm.define "centos" do |sub| + config.vm.define "travis" do |sub| + sub.vm.box = "bento/ubuntu-14.04" + sub.vm.provision :shell do |s| + s.path = "vagrant/install-on-travis-ci.sh" + s.privileged = false + s.args = [checkout] + end + end + + config.vm.define "centos" do |sub| sub.vm.box = "bento/centos-7.2" sub.vm.provision :shell do |s| s.path = "vagrant/install-on-centos-7.sh"