add special terms import to travis testing and fixup libs

This commit is contained in:
Sarah Hoffmann
2017-06-04 11:35:11 +02:00
parent 54393addd3
commit af81c6aa94
3 changed files with 12 additions and 2 deletions

11
Vagrantfile vendored
View File

@@ -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"