https://github.com/owncloud/core
Raw File
Tip revision: ff356a6063526cb4b2e7fa7a7f1af0d15140ee09 authored by Vincent Petry on 26 January 2017, 05:13:50 UTC
Set version to 8.2.10 RC2
Tip revision: ff356a6
.travis.yml
sudo: false
language: php
php:
  - 5.4

branches:
  only:
    - master
    - /^stable\d+(\.\d+)?$/

script:
  - sh -c "if [ '$TC' = 'syntax' ]; then composer install && vendor/bin/parallel-lint --exclude vendor/jakub-onderka/ --exclude 3rdparty/patchwork/utf8/class/Patchwork/Utf8/Bootup/ --exclude vendor/composer/autoload_static.php --exclude 3rdparty/composer/autoload_static.php .; fi"

matrix:
  include:
    - php: 5.4
      env: DB=sqlite;TC=syntax
    - php: 5.5
      env: DB=sqlite;TC=syntax
    - php: 5.6
      env: DB=sqlite;TC=syntax
    - php: 7.0
      env: DB=sqlite;TC=syntax

  fast_finish: true
back to top