Skip to content

Commit

Permalink
.kitchen.yml: Disable non-working platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
zuazo committed Sep 28, 2015
1 parent cf68608 commit 286f3ce
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .kitchen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ provisioner:
platforms:
- name: centos-5.11
run_list: recipe[selinux::disabled]
- name: centos-6.7
run_list: recipe[selinux::disabled]
# (98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
# https://github.com/svanzoest-cookbooks/apache2/issues/259
# - name: centos-6.7
# run_list: recipe[selinux::disabled]
- name: centos-7.1
run_list: recipe[selinux::disabled]
# No PHP 5.4 support:
Expand All @@ -40,10 +42,27 @@ suites:
run_list: recipe[owncloud_test::mysql]
- name: postgresql
run_list: recipe[owncloud_test::postgresql]
excludes:
- debian-7.8
# Chef::Exceptions::Package: No candidate version available for postgresql-client-9.1
- debian-8.1
# https://github.com/hw-cookbooks/postgresql/issues/249
- ubuntu-10.04
- ubuntu-12.04
- ubuntu-15.04
# libpq.so: undefined reference to `SSL_[...]@OPENSSL_1.0.0'
# https://github.com/hw-cookbooks/postgresql/issues/212
- ubuntu-14.04
# PostgreSQL >= 9 required
- centos-5.11
- name: sqlite
excludes:
# execute[run owncloud setup]: Writing to database failed
- centos-5.11
run_list: recipe[owncloud_test::sqlite]
- name: nginx
excludes:
# Error: Missing Dependency: php54w-cli >= 5.1.0-1 is needed by package
# 1:php54w-pear-1.9.4-7.w5.noarch (installed)
- centos-5.11
run_list: recipe[owncloud_test::nginx]

0 comments on commit 286f3ce

Please sign in to comment.