Fix drone

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2019-04-12 15:49:46 +02:00
parent 4f4bd281a7
commit c2dd1945fc
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
1 changed files with 86 additions and 64 deletions

View File

@ -1,30 +1,13 @@
clone:
git:
image: plugins/git
depth: 1
kind: pipeline
name: check-app-compatbility
pipeline:
signed-off-check:
steps:
- name: check-app-compatbility
image: nextcloudci/php7.0:php7.0-2
environment:
- APP_NAME=data_request
- CORE_BRANCH=stable14
- 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
secrets: [ github_token ]
when:
matrix:
TESTS: signed-off-check
check-app-compatbility:
image: nextcloudci/php7.0:php7.0-2
environment:
- APP_NAME=data_request
- CORE_BRANCH=stable14
- DB=sqlite
APP_NAME: data_request
CORE_BRANCH: stable14
DB: sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
@ -33,16 +16,26 @@ pipeline:
# Code checker
- ./occ app:check-code $APP_NAME
- cd apps/$APP_NAME/
when:
matrix:
TESTS: check-app-compatbility
syntax-php7.0:
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: syntax-php7.0
steps:
- name: syntax-php7.0
image: nextcloudci/php7.0:php7.0-2
environment:
- APP_NAME=data_request
- CORE_BRANCH=stable14
- DB=sqlite
APP_NAME: data_request
CORE_BRANCH: stable14
DB: sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
@ -50,15 +43,26 @@ pipeline:
- cd ../server
- composer install
- ./lib/composer/bin/parallel-lint apps/$APP_NAME/
when:
matrix:
TESTS: syntax-php7.0
php7.0:
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: php7.0
steps:
- name: php7.0
image: nextcloudci/php7.0:php7.0-2
environment:
- APP_NAME=data_request
- CORE_BRANCH=stable14
- DB=sqlite
APP_NAME: data_request
CORE_BRANCH: stable14
DB: sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
@ -70,15 +74,26 @@ pipeline:
# Run phpunit tests
- cd tests/unit/
- phpunit --configuration phpunit.xml
when:
matrix:
TESTS: php7.0
php7.1:
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: php7.1
steps:
- name: php7.1
image: nextcloudci/php7.1:php7.1-15
environment:
- APP_NAME=data_request
- CORE_BRANCH=stable14
- DB=sqlite
APP_NAME: data_request
CORE_BRANCH: stable14
DB: sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
@ -90,15 +105,26 @@ pipeline:
# Run phpunit tests
- cd tests/unit/
- phpunit --configuration phpunit.xml
when:
matrix:
TESTS: php7.1
php7.2:
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: php7.2
steps:
- name: php7.2
image: nextcloudci/php7.2:php7.2-12
environment:
- APP_NAME=data_request
- CORE_BRANCH=stable14
- DB=sqlite
APP_NAME: data_request
CORE_BRANCH: stable14
DB: sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
@ -110,15 +136,11 @@ pipeline:
# Run phpunit tests
- cd tests/unit/
- phpunit --configuration phpunit.xml
when:
matrix:
TESTS: php7.2
matrix:
include:
- TESTS: signed-off-check
- TESTS: check-app-compatbility
- TESTS: syntax-php7.0
- TESTS: php7.0
- TESTS: php7.1
- TESTS: php7.2
trigger:
branch:
- master
- stable*
event:
- pull_request
- push