PHP Docs on gh-pages

This commit is contained in:
japatel
2015-02-11 12:20:59 -06:00
parent bba6f24491
commit b5231900b1
2 changed files with 38 additions and 14 deletions

View File

@@ -1,26 +1,30 @@
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: hhvm
fast_finish: true
before_script:
- composer self-update
- composer install --dev
- composer require satooshi/php-coveralls:* --dev
- composer self-update
- composer install --dev
- composer require satooshi/php-coveralls:* --dev
script:
- mkdir build
- mkdir build/coverage
- phpunit
- mkdir build
- mkdir build/coverage
- phpunit
after_success:
- php vendor/bin/coveralls -v -c .coveralls.yml
- php vendor/bin/coveralls -v -c .coveralls.yml
- if [ $TRAVIS_PHP_VERSION = '5.6' ]; then sh generate-api.sh; fi
notifications:
email:
recipients:
- DL-PP-PHP-SDK@ebay.com
on_success: change
env:
global:
secure: UazgSLMJmrhmO+Do9TDiu8EKop06Xc2Ghi9F/8rx/CLz2FDZ5UDdzDD8uetjfdOnmMV7oadq13FGxJb9YCqTiJPZFpKsGtEr/IcCdpkO2krluLuWw5Veh8YxRG4rcZ+UWS0JpfQ72L9Zp4dMqPRo8SzcfiZV3HMG1uKYKpTSKnM=

20
generate-api.sh Normal file
View File

@@ -0,0 +1,20 @@
# Get ApiGen.phar
wget http://www.apigen.org/apigen.phar
# Generate Api
php apigen.phar generate -s lib -d ../gh-pages
cd ../gh-pages
# Set identity
git config --global user.email "travis@travis-ci.org"
git config --global user.name "Travis"
# Add branch
git init
git remote add origin https://${GH_TOKEN}@github.com/paypal/PayPal-PHP-SDK.git > /dev/null
git checkout -B gh-pages
# Push generated files
git add .
git commit -m "API updated"
git push origin gh-pages -fq > /dev/null