Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
69a38d18
Commit
69a38d18
authored
Sep 14, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added cubrid_pdo to travis
parent
281e6028
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
18 deletions
+34
-18
.travis.yml
.travis.yml
+1
-18
cubrid-setup.sh
tests/unit/data/travis/cubrid-setup.sh
+33
-0
cubrid-solo.rb
tests/unit/data/travis/cubrid-solo.rb
+0
-0
No files found.
.travis.yml
View file @
69a38d18
...
...
@@ -13,24 +13,7 @@ before_script:
-
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
-
sudo pecl install pdo_cubrid
-
tests/unit/data/travis/cubrid-setup.sh
script
:
-
phpunit --coverage-clover tests/unit/runtime/coveralls/clover.xml --verbose
...
...
tests/unit/data/travis/cubrid-setup.sh
0 → 100644
View file @
69a38d18
#!/bin/sh
#
# 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/travis/cubrid-solo.rb
-j
cubrid_chef.json
-r
http://sourceforge.net/projects/cubrid/files/CUBRID-Demo-Virtual-Machines/Vagrant/chef-cookbooks.tar.gz/download
install_pdo_cubrid
()
{
wget
"http://pecl.php.net/get/PDO_CUBRID-9.1.0.0003.tgz"
&&
tar
-zxf
"PDO_CUBRID-9.1.0.0003.tgz"
&&
sh
-c
"cd PDO_CUBRID-9.1.0.0003 && phpize && ./configure && make && sudo make install"
echo
"extension=pdo_cubrid.so"
>>
~/.phpenv/versions/
$(
phpenv version-name
)
/etc/php.ini
return
$?
}
install_pdo_cubrid
>
~/pdo_cubrid.log
||
(
echo
"=== PDO CUBRID BUILD FAILED ==="
;
cat
~/pdo_cubrid.log
)
\ No newline at end of file
tests/unit/data/cubrid-solo.rb
→
tests/unit/data/
travis/
cubrid-solo.rb
View file @
69a38d18
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment