6 - name: "Lint and analyse code"
7 - name: "PHP Unit tests"
8 - name: "Documentation"
12 - composer install --no-interaction
13 - yarn install --non-interactive
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
24 - ./scripts/generate-mo --quiet
25 - ./vendor/bin/phpunit --configuration phpunit.xml.dist --exclude-group selenium
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)
44 - $HOME/.composer/cache/
52 - name: "PHP 7.1 with dbase extension"
56 - stage: "Lint and analyse code"
64 - yarn run js-lint --quiet
67 - stage: "Lint and analyse code"
72 script: composer phpstan
74 - stage: "PHP Unit tests"
79 - stage: "PHP Unit tests"
84 - stage: "PHP Unit tests"
89 - stage: "PHP Unit tests"
94 - stage: "PHP Unit tests"
99 - composer install --no-interaction --ignore-platform-reqs
100 - yarn install --non-interactive
102 - stage: "PHP Unit tests"
109 - brew link --force gettext
110 - sed -i -e 's/^memory_limit = .*/memory_limit = -1/' /usr/local/etc/php/7.2/php.ini
119 - stage: "PHP Unit tests"
126 - choco install php composer mariadb
127 - export PATH=/c/tools/php73:/c/ProgramData/ComposerSetup/bin:/c/"Program Files"/"MariaDB 10.3"/bin:$PATH
128 - PHP_EXTENSIONS="mysqli curl bz2 gd2 pdo_mysql"
129 - for php_ext in $PHP_EXTENSIONS ; do sed -i -e "s/^;extension=${php_ext}/extension=${php_ext}/" /c/tools/php73/php.ini ; done
130 - sed -i -e 's/^memory_limit = .*/memory_limit = -1/' /c/tools/php73/php.ini
131 - find . -type f -name "*.php" -print0 | xargs -0 sed -i ':a;N;$!ba;s/\r//g'
133 - stage: "PHP Unit tests"
135 name: "PHP 7.1 with dbase extension"
138 - pecl channel-update pecl.php.net
139 - pecl install dbase-7.0.0beta1
140 - composer install --no-interaction
141 - yarn install --non-interactive
143 - stage: "Documentation"
149 - source ~/virtualenv/python3.6/bin/activate
150 - pip install 'Sphinx'
151 script: ./test/ci-docs
153 - stage: "Documentation"
154 name: "Build API docs"
158 install: composer global require "sami/sami:^4.0"
159 script: $HOME/.composer/vendor/bin/sami.php --no-interaction update ./test/sami-config.php
161 - stage: "Other tests"
162 name: "Build release"
167 - source ~/virtualenv/python3.6/bin/activate
168 - pip install 'Sphinx'
169 script: ./scripts/create-release.sh --ci
171 - stage: "Other tests"
172 name: "Run selenium tests on Google Chrome"
175 - TESTSUITE_SELENIUM_BROWSER=chrome
176 - TESTSUITE_USER=root
177 - TESTSUITE_URL=http://127.0.0.1:8000
179 - ./test/install-browserstack
180 - composer install --no-interaction
181 - yarn install --non-interactive
182 - echo -e "<?php\n\$cfg['UploadDir'] = './test/test_data/';" > config.inc.php
183 script: ./vendor/bin/phpunit --configuration phpunit.xml.nocoverage --group selenium --verbose --debug