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

.travis.yml - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49f48b7c0bde460fd82f144fc16b91a278640157 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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