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

.travis.yml - github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74dfff0416c804aedc739dfb0274e7d28c120ab5 (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
37
language: php

dist: trusty #
sudo: false

matrix:
  fast_finish: true
  include:
    - php: 5.4
    - php: 5.5
    - php: 5.6
    - php: 7.0
    - php: 7.1
      env: CODE_COVERAGE=1
    - php: 7.2
    - php: 7.3
      dist: bionic # for proper node-less version
      env: BROWSER_TESTS=1
      addons:
        chrome: stable
        apt:
          packages:
            - node-less
    - php: 7.4

cache:
  directories:
    - $HOME/.composer

install:
  - .ci/install.sh

script:
  - .ci/run.sh

notifications:
  email: false