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

.travis.yml - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db5d01461c9be6a8899b243907eb24a360b19571 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# do not edit this file manually, instead run the generate:travis-yml console command
# if you are a Piwik core developer, to auto generate the .travis.yml:
#   1) edit this template file: https://github.com/piwik/travis-scripts/blob/master/generator/templates/travis.yml.twig
#   2) commit the updated submodule in `piwik/tests/travis/`

# when modifying this file, please consider whether your changes should apply to plugin .travis.yml files. if not, check whether the pluginName twig var is empty,
# otherwise your changes will be synced with every plugin that uses an auto generated .travis.yml

# also please test generation before committing by running ./console generate:travis-yml --core and ./console generate:travis-yml --plugin=CustomAlerts
# and making sure the .travis.yml files are changed correctly

language: php

services:
  - redis-server

addons:
  apt:
    sources:
      - deadsnakes

    packages:
      - python2.6
      - python2.6-dev
      - nginx
      - realpath
      - lftp

git:
  lfs_skip_smudge: true

# Separate different test suites
env:
  global:
    - PIWIK_ROOT_DIR=$TRAVIS_BUILD_DIR
    - SKIP_INSTALL_MYSQL_56=1
    - secure: "AMhZmPZx4SUcuZRBzGHlQPxzM4D8FvFB3UThDa52gbi9KIBrwcumzV2VGi6B\n5fgjwtB4XTE1In7qhY2HMikPWBmWYYOQ5QcMPJsqqHt4iMmahx8WKzne6NOk\nNpqAuje/fulNGeP2LJZi0nrub3Fh4VwXaOvpNloKNQN/2JuqPtM="
    - secure: "CW73pDjcaabpSL7bWiWIQLydKmvLzA1gWNv/zK0VcAKezQtCAQbqpIY1+B56wOhkaCWa7P+xdd2gUWEtvvdRKEC0sZcgCdHD5pQx390e5PWCMQTFO+doAElI4w4DMATCbH890Wcw2rotiZcjlkPYY+urIpUlcRsl6mMtBVQuQ9c="

matrix:
  fast_finish: true
  include:
    # PDO Mysql
    - php: 5.6
      env: TEST_SUITE=SystemTests MYSQL_ADAPTER=PDO_MYSQL
      sudo: required
    - php: 5.6
      env: TEST_SUITE=IntegrationTests MYSQL_ADAPTER=PDO_MYSQL
      sudo: required
    - php: 5.6
      env: TEST_SUITE=UnitTests MYSQL_ADAPTER=PDO_MYSQL
      sudo: false
    # Javascript tests
    - php: 5.6
      env: TEST_SUITE=JavascriptTests MYSQL_ADAPTER=PDO_MYSQL
      sudo: false
    - php: 5.6
      env: TEST_SUITE=AngularJSTests MYSQL_ADAPTER=PDO_MYSQL SKIP_COMPOSER_INSTALL=1
      sudo: false
    # All tests after another
    - php: 5.6
      env: TEST_SUITE=AllTests MYSQL_ADAPTER=MYSQLI ALLTEST_EXTRA_OPTIONS="--run-first-half-only"
      sudo: required
    - php: 5.6
      env: TEST_SUITE=AllTests MYSQL_ADAPTER=MYSQLI ALLTEST_EXTRA_OPTIONS="--run-second-half-only"
      sudo: required
    - php: 5.5
      env: TEST_SUITE=UITests MYSQL_ADAPTER=PDO_MYSQL UITEST_EXTRA_OPTIONS="--run-first-half-only"
      sudo: false
      dist: precise
    - php: 5.5
      env: TEST_SUITE=UITests MYSQL_ADAPTER=PDO_MYSQL UITEST_EXTRA_OPTIONS="--run-second-half-only"
      sudo: false
      dist: precise

dist: trusty

script: $PIWIK_ROOT_DIR/tests/travis/travis.sh

before_install:
  - . ./tests/travis/install_git_lfs.sh

install:
  - git fetch -q

  - export GENERATE_TRAVIS_YML_COMMAND="php ./tests/travis/generator/main.php generate:travis-yml --core --verbose"
  - '[[ "$TRAVIS_JOB_NUMBER" != *.1 || "$TRAVIS_PULL_REQUEST" != "false" ]] || ./tests/travis/autoupdate_travis_yml.sh'

  - ./tests/travis/configure_git.sh

  # travis now complains about this failing 9 times out of 10, so removing it
  #- travis_retry composer self-update
  - '[ "$SKIP_COMPOSER_INSTALL" == "1" ] || travis_retry composer install' 
 


before_script:
  - if [[ "$TRAVIS_PHP_VERSION" != 7* ]]; then phpenv config-rm xdebug.ini; fi

  # add always_populate_raw_post_data=-1 to php.ini
  - echo "always_populate_raw_post_data=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini

  # disable opcache to avoid random failures on travis
  - echo "opcache.enable=0" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini

  # make tmpfs and run MySQL on it for reasonnable performance
  - ./tests/travis/setup_mysql_tmpfs.sh

  # print out mysql information
  - mysql --version
  - mysql -e "SELECT VERSION();"

  # configure mysql
  - mysql -e "SET GLOBAL sql_mode = 'NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES'" # Travis default
  # try to avoid 'mysql has gone away' errors
  - mysql -e "SET GLOBAL wait_timeout = 36000;"
  - mysql -e "SET GLOBAL max_allowed_packet = 134209536;"
  - mysql -e "SHOW VARIABLES LIKE 'max_allowed_packet';"
  - mysql -e "SHOW VARIABLES LIKE 'wait_timeout';"

  - mysql -e "SELECT @@sql_mode;"
  # - mysql -e "SHOW GLOBAL VARIABLES;"

  # print out more debugging info
  - uname -a
  - date
  - php -r "var_dump(gd_info());"
  - mysql -e 'create database piwik_tests;'

  - ./tests/travis/prepare.sh
  - ./tests/travis/setup_webserver.sh
  - ./tests/travis/install_phantomjs.sh; export PATH=$PWD/travis_phantomjs/phantomjs-2.1.1-linux-x86_64/bin:$PATH;

  - cd tests/PHPUnit

after_script:
  # change directory back to root travis dir
  - cd $PIWIK_ROOT_DIR

  # output contents of files w/ debugging info to screen
  - cat $PIWIK_ROOT_DIR/tests/travis/error.log
  - cat $PIWIK_ROOT_DIR/tmp/php-fpm.log
  - cat $PIWIK_ROOT_DIR/tmp/logs/piwik.log
  - cat $PIWIK_ROOT_DIR/config/config.ini.php

  # upload test artifacts (for debugging travis failures)
  - ./tests/travis/upload_artifacts.sh

after_success:
  - cd $PIWIK_ROOT_DIR
  - ./tests/travis/generate_docs.sh

cache:
  directories:
    - "travis_phantomjs"





notifications:
  slack:
    rooms:
      - piwik:3HWhNh21qPfDACQXTrJOb0mW
    on_success: :change
    on_failure: :change

  irc:
    skip_join: true
    on_success: change
    on_failure: change
    channels:
      - "irc.freenode.org#piwik-dev"
    template:
      - "%{repository} (%{commit}) : %{message} %{foo} "
      - "Build details: %{build_url}"