Pico/.travis.yml

36 lines
697 B
YAML
Raw 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
2015-10-28 02:20:37 +00:00
script:
- find . -type f -name '*.php' -print0 | xargs -0 -I file php -l file > /dev/null
before_deploy:
2015-10-28 02:20:37 +00:00
- composer install
- composer dump-autoload --optimize
2015-11-06 18:13:01 +00:00
- tar -czf "pico-release-$TRAVIS_TAG.tar.gz" .htaccess README.md CHANGELOG.md CONTRIBUTING.md composer.json composer.lock LICENSE config content-sample lib plugins themes vendor 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:
repo: picocms/Pico
2015-10-28 02:20:37 +00:00
tags: true
php: 5.3
sudo: false