mail/.travis.yml

120 строки
4.2 KiB
YAML

sudo: required
dist: xenial
language: php
php:
- 7.2
- 7.3
- 7.4
jobs:
allow_failures:
- php: nightly
services:
- docker
- mysql
- postgresql
env:
global:
- CORE_BRANCH=master
- PHP_COVERAGE=FALSE
- TEST_SUITE=TEST-PHP
- DB=mysql
- PATCH_VERSION_CHECK=FALSE
matrix:
- TEST_SUITE=LINT-PHP
- TEST_SUITE=TEST-PHP
matrix:
include:
- php: 7.3
env: "DB=pgsql"
- php: 7.3
env: "TEST_SUITE=TEST-JS"
- php: 7.3
env: "TEST_SUITE=PACKAGE"
- php: 7.2
env: "PHP_COVERAGE=TRUE"
- php: 7.3
env: "CORE_BRANCH=stable17"
- php: 7.3
env: "CORE_BRANCH=stable18"
- php: nightly
env: "DB=sqlite PATCH_VERSION_CHECK=TRUE"
fast_finish: true
branches:
only:
- master
- "/^stable\\d+(\\.\\d+)?$/"
- /^v\d++(\.\d+)?+(\.\d+)?+(\.\d+)?$/
cache:
directories:
- "$HOME/.composer/cache/files"
- "$HOME/.npm"
before_install:
- php --info
# Install Krankerl
- if [[ "$TEST_SUITE" = "PACKAGE" ]]; then wget https://github.com/ChristophWurst/krankerl/releases/download/v0.12.2/krankerl_0.12.2_amd64.deb; fi
- if [[ "$TEST_SUITE" = "PACKAGE" ]]; then sudo dpkg -i krankerl_0.12.2_amd64.deb; fi
# 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"
- cd ..
- git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b $CORE_BRANCH core
- if [[ "$PATCH_VERSION_CHECK" = "TRUE" ]]; then echo "<?php" > core/lib/versioncheck.php; fi
- if [[ "$PATCH_VERSION_CHECK" = "TRUE" ]]; then sed -ri 's/(<php min\-version="[0-9\.]+") max\-version="[0-9\.]+"/\1/g' mail/appinfo/info.xml; fi
- mv mail core/apps/
before_script:
# Set up 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"
# Set up app
- 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"
- cd core/apps/mail
- 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"
# Prepare IMAP test docker
- 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 || true; fi
# Print running docker images, just to verify they did not crash
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then docker ps; fi"
script:
# Run server's app code checker
- sh -c "if [ '$TEST_SUITE' = 'LINT-PHP' ]; then php ../../occ app:check-code mail; fi"
# Run JS tests
- 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"
# Run PHP tests
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then composer test:unit; fi"
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then composer test:integration; 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 tests/clover.unit.xml; fi
- if [[ "$PHP_COVERAGE" = "TRUE" ]]; then php ocular.phar code-coverage:upload --format=php-clover tests/clover.integration.xml; fi
# Test packaging
- if [[ "$TEST_SUITE" = "PACKAGE" ]]; then make appstore; fi