Translated using Weblate (Slovenian)
[phpmyadmin.git] / .travis.yml
blobce16119888ffb454d3e9324d7d904c9d63e4faf4
1 dist: xenial
3 language: php
5 stages:
6   - name: "Lint and analyse code"
7   - name: "PHP Unit tests"
8   - name: "Documentation"
9   - name: "Other tests"
11 install:
12   - composer install --no-interaction
13   - yarn install --non-interactive
15 before_script:
16   - export TESTSUITE_PASSWORD=`openssl rand -base64 30`
17   - export TESTSUITE_BROWSERSTACK_KEY=`echo cHlDcHJTNmZwZjVlaUR2RmV6VkU= | base64 --decode`
18   - mysql -uroot -e "CREATE DATABASE IF NOT EXISTS test"
19   - mysql -uroot < sql/create_tables.sql
20   - mysql -uroot -e "SET PASSWORD = PASSWORD('$TESTSUITE_PASSWORD')"
21   - ./test/start-local-server
23 script:
24   - ./scripts/generate-mo --quiet
25   - ./vendor/bin/phpunit --configuration phpunit.xml.dist --exclude-group selenium
27 after_script:
28   - if [ -f vendor/bin/codacycoverage ] ; then php vendor/bin/codacycoverage clover || true ; fi
29   - if [ -f php.log ] ; then cat php.log ; fi
30   - if [ -f nginx-error.log ] ; then cat nginx-error.log ; fi
31   - if [ -f build/logs/phpunit.json ] ; then ./scripts/phpunit-top-tests build/logs/phpunit.json ; fi
32   - if [ -f config.inc.php ] ; then rm -rf config.inc.php; fi
33   - if [ "$CI_MODE" = "selenium" ] ; then ~/browserstack/BrowserStackLocal --daemon stop; fi
35 after_success: bash <(curl -s https://codecov.io/bash)
37 services:
38   - mysql
40 cache:
41   pip: true
42   yarn: true
43   directories:
44     - $HOME/.composer/cache/
45     - $HOME/browserstack
46     - node_modules
48 jobs:
49   allow_failures:
50     - php: nightly
51     - os: osx
53   include:
54     - stage: "Lint and analyse code"
55       name: "Lint files"
56       before_install: phpenv config-rm xdebug.ini
57       before_script: skip
58       after_script: skip
59       after_success: skip
60       script:
61         - ./test/ci-phplint
62         - composer phpcs
63         - yarn run js-lint --quiet
64         - yarn run css-lint
66     - stage: "Lint and analyse code"
67       name: "Run phpstan"
68       before_install: phpenv config-rm xdebug.ini
69       before_script: skip
70       after_script: skip
71       after_success: skip
72       script: composer phpstan
74     - stage: "PHP Unit tests"
75       php: 7.1
76       name: "PHP 7.1"
77       env: CI_MODE=test
79     - stage: "PHP Unit tests"
80       php: 7.2
81       name: "PHP 7.2"
82       env: CI_MODE=test
84     - stage: "PHP Unit tests"
85       php: 7.3
86       name: "PHP 7.3"
87       env: CI_MODE=test
89     - stage: "PHP Unit tests"
90       php: 7.4
91       name: "PHP 7.4"
92       env: CI_MODE=test
93       before_install: phpenv config-rm xdebug.ini
95     - stage: "PHP Unit tests"
96       php: nightly
97       name: "PHP nightly"
98       env: CI_MODE=test
99       install:
100         - composer install --no-interaction --ignore-platform-reqs
101         - yarn install --non-interactive
103     - stage: "PHP Unit tests"
104       name: "OSX"
105       os: osx
106       env: CI_MODE=test
107       language: node_js
108       node_js: 10
109       before_install:
110         - brew link --force gettext
111         - echo "memory_limit=-1" > /usr/local/etc/php/7.4/conf.d/50-travis.ini
112         - echo "pcre.jit=0" >> /usr/local/etc/php/7.4/conf.d/50-travis.ini
113         - mysql.server start
114         - sleep 5
115         # Enable password access
116         - mysql -e "SET PASSWORD FOR 'root'@'localhost' = PASSWORD('');"
117       addons:
118         homebrew:
119           packages:
120             - php
121             - composer
122             - mariadb
123           update: true
125     - stage: "PHP Unit tests"
126       name: "Windows"
127       os: windows
128       language: node_js
129       node_js: 10
130       env:
131         - CI_MODE=test
132         - YARN_GPG=no
133       before_install:
134         - choco install php composer mariadb
135         - export PATH=/c/tools/php74:/c/ProgramData/ComposerSetup/bin:/c/"Program Files"/"MariaDB 10.4"/bin:$PATH
136         - PHP_EXTENSIONS="mysqli curl bz2 gd2 pdo_mysql"
137         - for php_ext in $PHP_EXTENSIONS ; do sed -i -e "s/^;extension=${php_ext}/extension=${php_ext}/" /c/tools/php74/php.ini ; done
138         - sed -i -e 's/^memory_limit = .*/memory_limit = -1/' /c/tools/php74/php.ini
139         - find . -type f -name "*.php" -print0 | xargs -0 sed -i ':a;N;$!ba;s/\r//g'
141     - stage: "PHP Unit tests"
142       php: 7.1
143       name: "PHP 7.1 with dbase extension"
144       env: CI_MODE=test
145       install:
146         - pecl channel-update pecl.php.net
147         - pecl install dbase
148         - php -m |grep -F 'dbase'
149         - composer install --no-interaction
150         - yarn install --non-interactive
152     - stage: "Documentation"
153       name: "Build docs"
154       before_script: skip
155       after_script: skip
156       after_success: skip
157       install:
158         - source ~/virtualenv/python3.6/bin/activate
159         - pip install 'Sphinx'
160       script: ./test/ci-docs
162     - stage: "Documentation"
163       name: "Build API docs"
164       before_install: phpenv config-rm xdebug.ini
165       before_script: skip
166       after_script: skip
167       after_success: skip
168       install: composer global require "sami/sami:^4.0"
169       script: $HOME/.composer/vendor/bin/sami.php --no-interaction update ./test/sami-config.php
171     - stage: "Other tests"
172       name: "Build release"
173       before_script: skip
174       after_script: skip
175       after_success: skip
176       install:
177         - source ~/virtualenv/python3.6/bin/activate
178         - pip install 'Sphinx'
179       script: ./scripts/create-release.sh --ci
181     - stage: "Other tests"
182       name: "Run selenium tests on Google Chrome"
183       env:
184         - CI_MODE=selenium
185         - TESTSUITE_SELENIUM_BROWSER=chrome
186         - TESTSUITE_USER=root
187         - TESTSUITE_URL=http://127.0.0.1:8000
188       before_install: phpenv config-rm xdebug.ini
189       install:
190         - ./test/install-browserstack
191         - composer install --no-interaction
192         - yarn install --non-interactive
193         - echo -e "<?php\n\$cfg['UploadDir'] = './test/test_data/';" > config.inc.php
194       script: ./vendor/bin/phpunit --configuration phpunit.xml.nocoverage --group selenium --verbose --debug
195       addons:
196         apt:
197           packages:
198             - nginx