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

.travis.yml - github.com/nextcloud/firstrunwizard.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1fc847f26ea7d31b0f696f1c96acd9b44d13919a (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
26
27
28
29
30
31
32
33
34
35
36
# 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:
  - 5.4
  - 5.5
  # aliased to a recent 5.5.x version
  - 5.6
  # aliased to a recent 7 version
  - 7
  
# optionally specify a list of environments, for example to test different RDBMS
#env:
#  - DB=mysql
#  - DB=pgsql

env:
  matrix:
    - DB=sqlite

before_install:
  - wget https://raw.githubusercontent.com/owncloud/administration/master/travis-ci/before_install.sh
  - bash ./before_install.sh firstrunwizard master $DB
  - cd ../core
  - php occ app:enable firstrunwizard

before_script:
  - cd apps/firstrunwizard

script:
  - cd tests
  - phpunit --configuration phpunit.xml

allow_failures:
  - php: hhvm