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