2015-10-28 02:20:37 +00:00
|
|
|
language: php
|
|
|
|
php:
|
2015-10-28 11:53:56 +00:00
|
|
|
- 5.3
|
2015-10-28 02:20:37 +00:00
|
|
|
- 5.4
|
2015-10-28 11:53:56 +00:00
|
|
|
- 5.5
|
|
|
|
- 5.6
|
2016-10-09 00:52:36 +00:00
|
|
|
- 7.0
|
|
|
|
- 7.1
|
2015-10-28 11:53:56 +00:00
|
|
|
- nightly
|
2016-10-11 16:21:14 +00:00
|
|
|
- hhvm
|
|
|
|
- hhvm-nightly
|
2015-10-28 02:20:37 +00:00
|
|
|
|
2015-11-25 19:04:46 +00:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- php: nightly
|
2016-10-11 16:21:14 +00:00
|
|
|
- php: hhvm-nightly
|
2015-11-25 19:04:46 +00:00
|
|
|
fast-finish: true
|
|
|
|
|
2016-10-09 11:14:56 +00:00
|
|
|
notifications:
|
|
|
|
irc: "chat.freenode.net#picocms"
|
|
|
|
|
2015-11-25 19:39:49 +00:00
|
|
|
install:
|
|
|
|
- composer install
|
|
|
|
|
|
|
|
before_script:
|
2015-11-29 20:55:55 +00:00
|
|
|
- export PATH="$TRAVIS_BUILD_DIR/_build:$TRAVIS_BUILD_DIR/vendor/bin:$PATH"
|
2015-11-25 19:39:49 +00:00
|
|
|
|
2015-10-28 02:20:37 +00:00
|
|
|
script:
|
2015-11-29 20:55:55 +00:00
|
|
|
- phpcs --standard=.phpcs.xml "$TRAVIS_BUILD_DIR"
|
2015-10-28 11:53:56 +00:00
|
|
|
|
2015-11-25 19:39:49 +00:00
|
|
|
after_success:
|
2015-11-25 23:29:14 +00:00
|
|
|
- deploy-phpdoc-branch.sh
|
2015-11-25 19:39:49 +00:00
|
|
|
|
2015-10-28 11:53:56 +00:00
|
|
|
before_deploy:
|
2015-11-25 23:29:14 +00:00
|
|
|
- deploy-phpdoc-release.sh
|
2016-07-24 21:35:10 +00:00
|
|
|
- create-release-archive.sh "$TRAVIS_TAG"
|
2015-10-28 02:20:37 +00:00
|
|
|
|
|
|
|
deploy:
|
|
|
|
provider: releases
|
|
|
|
api_key: ${GITHUB_OAUTH_TOKEN}
|
2015-11-05 20:58:45 +00:00
|
|
|
file: pico-release-$TRAVIS_TAG.tar.gz
|
2015-10-28 02:20:37 +00:00
|
|
|
skip_cleanup: true
|
|
|
|
on:
|
|
|
|
tags: true
|
2015-10-28 11:53:56 +00:00
|
|
|
php: 5.3
|
2015-10-28 13:38:02 +00:00
|
|
|
|
2015-10-28 16:34:10 +00:00
|
|
|
sudo: false
|