Pico/.travis.yml

45 lines
942 B
YAML
Raw Permalink Normal View History

2015-10-28 02:20:37 +00:00
language: php
php:
- 5.3
2015-10-28 02:20:37 +00:00
- 5.4
- 5.5
- 5.6
- 7
- hhvm
- nightly
2015-10-28 02:20:37 +00:00
matrix:
allow_failures:
- php: nightly
fast-finish: true
install:
- composer install
before_script:
- export PATH="$TRAVIS_BUILD_DIR/_build:$TRAVIS_BUILD_DIR/vendor/bin:$PATH"
2015-10-28 02:20:37 +00:00
script:
- phpcs --standard=.phpcs.xml "$TRAVIS_BUILD_DIR"
after_success:
2015-11-25 23:29:14 +00:00
- deploy-phpdoc-branch.sh
before_deploy:
2015-11-25 23:29:14 +00:00
- deploy-phpdoc-release.sh
- composer install --no-dev --optimize-autoloader
- find vendor/ -type d -path 'vendor/*/*/.git' -print0 | xargs -0 rm -rf
- mv index.php.dist index.php
2015-12-01 21:12:20 +00:00
- tar -czf "pico-release-$TRAVIS_TAG.tar.gz" README.md LICENSE.md CONTRIBUTING.md CHANGELOG.md composer.json composer.lock config content-sample lib plugins themes vendor .htaccess index.php
2015-10-28 02:20:37 +00:00
deploy:
provider: releases
api_key: ${GITHUB_OAUTH_TOKEN}
file: pico-release-$TRAVIS_TAG.tar.gz
2015-10-28 02:20:37 +00:00
skip_cleanup: true
on:
tags: true
php: 5.3
sudo: false