Pico/.travis.yml

28 lines
553 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
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
- tar -czf "pico-$TRAVIS_TAG.tar.gz" .htaccess README.md changelog.txt composer.json composer.lock license.txt 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-$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