2017-08-09 12:15:52 +03:00
|
|
|
clone:
|
|
|
|
git:
|
2017-04-23 22:51:37 +03:00
|
|
|
image: plugins/git
|
|
|
|
depth: 1
|
2017-08-09 12:15:52 +03:00
|
|
|
|
|
|
|
pipeline:
|
2017-04-23 22:51:37 +03:00
|
|
|
check-app-compatbility:
|
2018-02-15 11:44:49 +03:00
|
|
|
image: nextcloudci/php7.0:php7.0-19
|
2017-04-23 22:51:37 +03:00
|
|
|
environment:
|
|
|
|
- APP_NAME=issuetemplate
|
2018-02-15 11:44:49 +03:00
|
|
|
- CORE_BRANCH=stable13
|
2017-04-23 22:51:37 +03:00
|
|
|
- DB=sqlite
|
|
|
|
commands:
|
|
|
|
# Pre-setup steps
|
|
|
|
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
|
|
|
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
|
|
|
- cd ../server
|
|
|
|
# Code checker
|
|
|
|
- ./occ app:check-code $APP_NAME -c strong-comparison
|
|
|
|
- ./occ app:check-code $APP_NAME -c deprecation
|
|
|
|
- cd apps/$APP_NAME/
|
|
|
|
when:
|
|
|
|
matrix:
|
|
|
|
TESTS: check-app-compatbility
|
|
|
|
signed-off-check:
|
2018-02-15 11:44:49 +03:00
|
|
|
image: nextcloudci/php7.0:php7.0-19
|
2017-04-23 22:51:37 +03:00
|
|
|
environment:
|
|
|
|
- APP_NAME=issuetemplate
|
2018-02-15 11:44:49 +03:00
|
|
|
- CORE_BRANCH=stable13
|
2017-04-23 22:51:37 +03:00
|
|
|
- DB=sqlite
|
|
|
|
commands:
|
|
|
|
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
|
|
|
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
|
|
|
- cd ../server
|
|
|
|
- php ./build/signed-off-checker.php
|
2018-04-12 17:42:36 +03:00
|
|
|
secrets: [ github_token ]
|
2017-04-23 22:51:37 +03:00
|
|
|
when:
|
|
|
|
matrix:
|
|
|
|
TESTS: signed-off-check
|
|
|
|
syntax-php5.6:
|
2018-02-15 11:44:49 +03:00
|
|
|
image: nextcloudci/php5.6:php5.6-8
|
2017-04-23 22:51:37 +03:00
|
|
|
environment:
|
|
|
|
- APP_NAME=issuetemplate
|
2018-02-15 11:44:49 +03:00
|
|
|
- CORE_BRANCH=stable13
|
2017-04-23 22:51:37 +03:00
|
|
|
- DB=sqlite
|
|
|
|
commands:
|
|
|
|
# Pre-setup steps
|
|
|
|
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
|
|
|
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
|
|
|
- cd ../server
|
|
|
|
- composer install
|
2017-10-14 22:23:34 +03:00
|
|
|
- ./lib/composer/bin/parallel-lint --exclude build/.phan/ --exclude lib/composer/jakub-onderka/ --exclude 3rdparty/symfony/polyfill-php70/Resources/stubs/ --exclude 3rdparty/patchwork/utf8/src/Patchwork/Utf8/Bootup/ --exclude 3rdparty/paragonie/random_compat/lib/ --exclude lib/composer/composer/autoload_static.php --exclude 3rdparty/composer/autoload_static.php .
|
2017-04-23 22:51:37 +03:00
|
|
|
when:
|
|
|
|
matrix:
|
|
|
|
TESTS: syntax-php5.6
|
|
|
|
syntax-php7.0:
|
2018-02-15 11:44:49 +03:00
|
|
|
image: nextcloudci/php7.0:php7.0-19
|
2017-04-23 22:51:37 +03:00
|
|
|
environment:
|
|
|
|
- APP_NAME=issuetemplate
|
2018-02-15 11:44:49 +03:00
|
|
|
- CORE_BRANCH=stable13
|
2017-04-23 22:51:37 +03:00
|
|
|
- DB=sqlite
|
|
|
|
commands:
|
|
|
|
# Pre-setup steps
|
|
|
|
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
|
|
|
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
|
|
|
- cd ../server
|
|
|
|
- composer install
|
|
|
|
- ./lib/composer/bin/parallel-lint --exclude lib/composer/jakub-onderka/ --exclude 3rdparty/symfony/polyfill-php70/Resources/stubs/ --exclude 3rdparty/patchwork/utf8/src/Patchwork/Utf8/Bootup/ --exclude 3rdparty/paragonie/random_compat/lib/ --exclude lib/composer/composer/autoload_static.php --exclude 3rdparty/composer/autoload_static.php .
|
|
|
|
when:
|
|
|
|
matrix:
|
|
|
|
TESTS: syntax-php7.0
|
|
|
|
php5.6:
|
2018-02-15 11:44:49 +03:00
|
|
|
image: nextcloudci/php5.6:php5.6-8
|
2017-04-23 22:51:37 +03:00
|
|
|
environment:
|
|
|
|
- APP_NAME=issuetemplate
|
2018-02-15 11:44:49 +03:00
|
|
|
- CORE_BRANCH=stable13
|
2017-04-23 22:51:37 +03:00
|
|
|
- DB=sqlite
|
|
|
|
commands:
|
|
|
|
# Pre-setup steps
|
|
|
|
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
|
|
|
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
|
|
|
- cd ../server/
|
|
|
|
- ./occ app:enable $APP_NAME
|
|
|
|
- cd apps/$APP_NAME
|
2018-02-15 11:44:49 +03:00
|
|
|
- make test
|
2017-04-23 22:51:37 +03:00
|
|
|
|
|
|
|
# Create coverage report
|
|
|
|
- wget https://codecov.io/bash -O codecov.sh
|
|
|
|
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST; fi"
|
|
|
|
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT; fi"
|
|
|
|
when:
|
|
|
|
matrix:
|
|
|
|
TESTS: php5.6
|
|
|
|
php7.0:
|
2018-02-15 11:44:49 +03:00
|
|
|
image: nextcloudci/php7.0:php7.0-17
|
2017-04-23 22:51:37 +03:00
|
|
|
environment:
|
|
|
|
- APP_NAME=issuetemplate
|
2018-02-15 11:44:49 +03:00
|
|
|
- CORE_BRANCH=stable13
|
2017-04-23 22:51:37 +03:00
|
|
|
- DB=sqlite
|
|
|
|
commands:
|
|
|
|
# Pre-setup steps
|
|
|
|
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
|
|
|
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
|
|
|
- cd ../server/
|
|
|
|
- php occ app:enable issuetemplate
|
|
|
|
- cd apps/$APP_NAME
|
|
|
|
# Run phpunit tests
|
|
|
|
- make test
|
|
|
|
when:
|
|
|
|
matrix:
|
|
|
|
TESTS: php7.0
|
|
|
|
php7.1:
|
2018-02-15 11:44:49 +03:00
|
|
|
image: nextcloudci/php7.1:php7.1-15
|
2017-04-23 22:51:37 +03:00
|
|
|
environment:
|
|
|
|
- APP_NAME=issuetemplate
|
2018-02-15 11:44:49 +03:00
|
|
|
- CORE_BRANCH=stable13
|
2017-04-23 22:51:37 +03:00
|
|
|
- DB=sqlite
|
|
|
|
commands:
|
|
|
|
# Pre-setup steps
|
|
|
|
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
|
|
|
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
|
|
|
- cd ../server/
|
|
|
|
- php occ app:enable issuetemplate
|
|
|
|
- cd apps/$APP_NAME
|
|
|
|
- make test
|
|
|
|
when:
|
|
|
|
matrix:
|
|
|
|
TESTS: php7.1
|
2018-02-15 11:44:49 +03:00
|
|
|
php7.2:
|
|
|
|
image: nextcloudci/php7.2:php7.2-9
|
|
|
|
environment:
|
|
|
|
- APP_NAME=issuetemplate
|
|
|
|
- CORE_BRANCH=stable13
|
|
|
|
- DB=sqlite
|
|
|
|
commands:
|
|
|
|
# Pre-setup steps
|
|
|
|
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
|
|
|
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
|
|
|
- cd ../server/
|
|
|
|
- php occ app:enable issuetemplate
|
|
|
|
- cd apps/$APP_NAME
|
|
|
|
- make test
|
|
|
|
when:
|
|
|
|
matrix:
|
|
|
|
TESTS: php7.2
|
2017-04-23 22:51:37 +03:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- TESTS: check-app-compatbility
|
|
|
|
- TESTS: signed-off-check
|
|
|
|
- TESTS: syntax-php5.6
|
|
|
|
- TESTS: syntax-php7.0
|
|
|
|
- TESTS: php5.6
|
|
|
|
- TESTS: php7.0
|
|
|
|
- TESTS: php7.1
|
2018-02-15 11:44:49 +03:00
|
|
|
- TESTS: php7.2
|
|
|
|
|
|
|
|
branches: [ master, stable* ]
|