From eb5bf2dabedd4b00b4d78a35d2468f1807837c2f Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Sat, 14 Sep 2013 11:33:07 +0200 Subject: [PATCH] added cubrid dbms to travis-ci copied from https://github.com/CUBRID/node-cubrid/blob/056e734ce36bb3fd25f100c983beb3947e899c1c/.travis.yml --- .travis.yml | 21 +++++++++++++++++++++ tests/unit/data/cubrid-solo.rb | 5 +++++ 2 files changed, 26 insertions(+) create mode 100644 tests/unit/data/cubrid-solo.rb diff --git a/.travis.yml b/.travis.yml index c24c0b3..6078518 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,11 +5,32 @@ php: - 5.4 - 5.5 +env: + - CUBRID_VERSION=9.1.0 + before_script: - composer self-update && composer --version - composer require satooshi/php-coveralls 0.6.* - mysql -e 'CREATE DATABASE yiitest;'; - psql -U postgres -c 'CREATE DATABASE yiitest;'; + # + # install CUBRID DBMS https://github.com/CUBRID/node-cubrid/blob/056e734ce36bb3fd25f100c983beb3947e899c1c/.travis.yml + - sudo hostname localhost + # Update OS before installing prerequisites. + - sudo apt-get update + # Install Chef Solo prerequisites. + - sudo apt-get install ruby ruby-dev libopenssl-ruby rdoc ri irb build-essential ssl-cert + # Install Chef Solo. + # Chef Solo 11.4.4 is broken, so install a previous version. + # The bug is planned to be fixed in 11.4.5 which haven't been released yet. + - sudo gem install --version '<11.4.4' chef --no-rdoc --no-ri + # Make sure the target directory for cookbooks exists. + - mkdir -p /tmp/chef-solo + # Prepare a file with runlist for Chef Solo. + - echo '{"cubrid":{"version":"'$CUBRID_VERSION'"},"run_list":["cubrid::demodb"]}' > cubrid_chef.json + # Install CUBRID via Chef Solo. Download all cookbooks from a remote URL. + - sudo chef-solo -c tests/unit/data/cubrid-solo.rb -j cubrid_chef.json -r http://sourceforge.net/projects/cubrid/files/CUBRID-Demo-Virtual-Machines/Vagrant/chef-cookbooks.tar.gz/download + script: - phpunit --coverage-clover tests/unit/runtime/coveralls/clover.xml diff --git a/tests/unit/data/cubrid-solo.rb b/tests/unit/data/cubrid-solo.rb new file mode 100644 index 0000000..f5f0004 --- /dev/null +++ b/tests/unit/data/cubrid-solo.rb @@ -0,0 +1,5 @@ +file_cache_path "/tmp/chef-solo" +data_bag_path "/tmp/chef-solo/data_bags" +encrypted_data_bag_secret "/tmp/chef-solo/data_bag_key" +cookbook_path [ "/tmp/chef-solo/cookbooks" ] +role_path "/tmp/chef-solo/roles" \ No newline at end of file