Newer
Older
addons:
apt:
packages:
- mysql-server-5.6
- mysql-client-core-5.6
- mysql-client-5.6
- PHP_COVERAGE=FALSE
- DB=mysql TEST_SUITE=LINT-PHP
- DB=mysql TEST_SUITE=TEST-PHP
matrix:
include:
- php: 7.3
env: "DB=mysql TEST_SUITE=TEST-JS"
- php: 7.3
env: "DB=mysql TEST_SUITE=PACKAGE"
env: "DB=mysql PHP_COVERAGE=TRUE"
- php: 7.3
env: "DB=sqlite CORE_BRANCH=stable16"
env: "DB=pgsql CORE_BRANCH=v16.0.0RC1"
fast_finish: true
- master
- "/^stable\\d+(\\.\\d+)?$/"
cache:
directories:
- "$HOME/.composer/cache/files"
- "$HOME/.npm"
# Install Krankerl
- wget https://github.com/ChristophWurst/krankerl/releases/download/v0.10.1/krankerl_0.10.1_amd64.deb
- sudo dpkg -i krankerl_0.10.1_amd64.deb
# Set up DB
- if [[ "$DB" == 'pgsql' ]]; then createuser -U travis -s oc_autotest; fi
- if [[ "$DB" == 'mysql' ]]; then mysql -u root -e 'create database oc_autotest;'; fi
- if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY '';"; fi
- if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "GRANT ALL ON oc_autotest.* TO 'oc_autotest'@'localhost';"; fi
- composer self-update
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then make install-composer-deps-dev; fi"
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then make start-imap-docker; fi"
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then make start-smtp-docker; fi"
- git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b $CORE_BRANCH core
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then php -f core/occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''; fi"
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then php -f core/occ app:enable mail; fi"
# Enable app twice to check occ errors of registered commands
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then php -f core/occ app:enable mail; fi"
- sh -c "if [ '$TEST_SUITE' = 'TEST-JS' ]; then npm install -g npm@latest; fi"
- sh -c "if [ '$TEST_SUITE' = 'TEST-JS' ]; then make dev-setup; fi"
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then make add-imap-account; fi"
# XDebug is only needed if we report coverage -> speeds up other builds
- if [[ "$PHP_COVERAGE" = "FALSE" ]]; then phpenv config-rm xdebug.ini; fi
# Print running docker images, just to verify they did not crash
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then docker ps; fi"
# Check info.xml schema validity
- wget https://apps.nextcloud.com/schema/apps/info.xsd
- xmllint appinfo/info.xml --schema info.xsd --noout
- rm info.xsd
- sh -c "if [ '$TEST_SUITE' = 'LINT-PHP' ]; then composer run lint; fi"
# Run server's app code checker
- sh -c "if [ '$TEST_SUITE' = 'LINT-PHP' ]; then php ../../occ app:check-code mail; fi"
- sh -c "if [ '$TEST_SUITE' = 'TEST-JS' ]; then npm test; fi"
# - sh -c "if [ '$TEST_JS' = 'TRUE' ]; then cat ./coverage/*/lcov.info | ./node_modules/coveralls/bin/coveralls.js; fi"
- sh -c "if [ '$TEST_SUITE' = 'TEST-JS' ]; then npm run lint; fi"
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then composer run test; fi"
- if [[ "$PHP_COVERAGE" = "TRUE" ]]; then wget https://scrutinizer-ci.com/ocular.phar;
fi
- if [[ "$PHP_COVERAGE" = "TRUE" ]]; then php ocular.phar code-coverage:upload --format=php-clover
- if [[ "$TEST_SUITE" = "PACKAGE" ]]; then make appstore; fi