diff options
Diffstat (limited to 'QA/CrossDistributionTest')
-rwxr-xr-x | QA/CrossDistributionTest/VagrantCrossDistributionTest.py | 7 | ||||
-rw-r--r-- | QA/CrossDistributionTest/playbook.yml | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/QA/CrossDistributionTest/VagrantCrossDistributionTest.py b/QA/CrossDistributionTest/VagrantCrossDistributionTest.py index ed0639c..3530fe5 100755 --- a/QA/CrossDistributionTest/VagrantCrossDistributionTest.py +++ b/QA/CrossDistributionTest/VagrantCrossDistributionTest.py @@ -21,6 +21,7 @@ testSystems = [ "bento/debian-8.5", "bento/opensuse-leap-42.1", "bento/fedora-24", + "Sabayon/spinbase-amd64" ] progressBar = tqdm(testSystems) @@ -40,7 +41,7 @@ Vagrant.configure("2") do |config| config.ssh.insert_key = false config.vm.provider "virtualbox" do |v| - v.memory = 3072 + v.memory = 4096 v.cpus = 2 end @@ -50,6 +51,10 @@ Vagrant.configure("2") do |config| config.vm.provision "shell", inline: "sudo dnf install -y python2 python2-dnf libselinux-python" end + if config.vm.box.include? "Sabayon" + config.vm.provision "shell", inline: "sudo equo update && sudo env ACCEPT_LICENSE=* equo install dev-vcs/git sys-apps/lsb-release" + end + config.vm.synced_folder "../..", "/home/vagrant/swift-host", type: "rsync" config.vm.synced_folder ".", "/vagrant", type: "rsync" diff --git a/QA/CrossDistributionTest/playbook.yml b/QA/CrossDistributionTest/playbook.yml index bad4d30..aa4b8f5 100644 --- a/QA/CrossDistributionTest/playbook.yml +++ b/QA/CrossDistributionTest/playbook.yml @@ -21,11 +21,13 @@ - name: Clone git from host working directory git: repo=/home/vagrant/swift-host dest=/home/vagrant/swift - - name: 'Install Swift dependencies' + - name: 'Install Swift dependencies for openSUSE Leap' shell: ./BuildTools/InstallSwiftDependencies.sh --non-interactive chdir=/home/vagrant/swift become: true when: ansible_distribution == 'openSUSE Leap' - name: 'Install Swift dependencies' + environment: + ACCEPT_LICENSE: '*' shell: yes | ./BuildTools/InstallSwiftDependencies.sh chdir=/home/vagrant/swift become: true when: ansible_distribution != 'openSUSE Leap' |