Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-12-18 17:35:59 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2014-12-19 01:35:15 +0300
commite34723685346ac5c9d4756a55c1f638e94dd2a36 (patch)
treee96b9b5c46d4037d5b67a0321b81b34b9fdc3c47 /.travis.yml
parent58b14218b687cb5c6e4fa3469ca6ad4fd2252163 (diff)
Remove php 5.3 and build.xml
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml30
1 files changed, 6 insertions, 24 deletions
diff --git a/.travis.yml b/.travis.yml
index ef4228d1..5beca946 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,21 +1,11 @@
-# see http://about.travis-ci.org/docs/user/languages/php/ for more hints
language: php
-# list any PHP version you want to test against
php:
- # using major version aliases
-
- # aliased to a recent 5.3.x version
- - 5.3
- # aliased to a recent 5.4.x version
- 5.4
- # aliased to a recent 5.5.x version
- 5.5
+ - 5.6
+ - hhvm
-# optionally specify a list of environments, for example to test different RDBMS
-#env:
-# - DB=mysql
-# - DB=pgsql
env:
global:
- CORE_BRANCH=master
@@ -30,26 +20,18 @@ before_install:
- wget https://raw.githubusercontent.com/owncloud/administration/master/travis-ci/before_install.sh
- bash ./before_install.sh documents $CORE_BRANCH $DB
-# execute any number of scripts before the test run, custom env's are available as variables
-#before_script:
-# - if [[ "$DB" == "pgsql" ]]; then psql -c "DROP DATABASE IF EXISTS hello_world_test;" -U postgres; fi
-# - if [[ "$DB" == "pgsql" ]]; then psql -c "create database hello_world_test;" -U postgres; fi
-# - if [[ "$DB" == "mysql" ]]; then mysql -e "create database IF NOT EXISTS hello_world_test;" -uroot; fi
-
-# omitting "script:" will default to phpunit
-
script:
# Test lint
- cd ../core/apps/documents
- - sh -c "if [ '$DB' = 'sqlite' ]; then ant test; fi"
+ - find . -name \*.php -exec php -l "{}" \;
# Run phpunit tests
- cd tests
- phpunit --configuration phpunit.xml
# Create coverage report
- - wget https://scrutinizer-ci.com/ocular.phar
- - php ocular.phar code-coverage:upload --format=php-clover clover.xml
+ - sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then wget https://scrutinizer-ci.com/ocular.phar; fi"
+ - sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then php ocular.phar code-coverage:upload --format=php-clover clover.xml; fi"
matrix:
include:
@@ -61,4 +43,4 @@ matrix:
env: DB=oracle
allow_failures:
- php: hhvm
- fast_finish: true \ No newline at end of file
+ fast_finish: true