Merge pull request #766 from nextcloud/fix-drone

Fix drone
This commit is contained in:
Morris Jobke 2018-05-16 11:01:20 +02:00 committed by GitHub
commit c0d249ba76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 3 deletions

View File

@ -3,3 +3,4 @@ pipeline:
image: nextcloudci/documentation:documentation-5
commands:
- make all
branches: [ master, stable* ]

View File

@ -40,7 +40,7 @@ developer-manual-pdf:
@echo "Developer manual build finished; PDF is updated"
api-docs: clean-api-docs
cd build && sh get-server-sources.sh stable13
cd build && sh get-server-sources.sh master
mkdir -p developer_manual/api/
cd build && composer install && composer update
cd build && php generateApiDoc.php

View File

@ -2,12 +2,16 @@
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/juliushaertl/reflection.git"
"type": "github",
"url": "https://github.com/juliushaertl/reflection",
"no-api": true
}
],
"require": {
"juliushaertl/phpdoc-to-rst": "dev-php7.0",
"phpdocumentor/reflection": "dev-php7.0"
},
"config": {
"github-protocols": ["https"]
}
}