mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
generate helper doc
This commit is contained in:
parent
250e4bfdef
commit
de81a93498
3 changed files with 18 additions and 0 deletions
|
@ -3,6 +3,7 @@ stages:
|
|||
- install
|
||||
- tests
|
||||
- lint
|
||||
- doc
|
||||
|
||||
default:
|
||||
tags:
|
||||
|
@ -18,3 +19,4 @@ include:
|
|||
- local: .gitlab/ci/install.gitlab-ci.yml
|
||||
- local: .gitlab/ci/test.gitlab-ci.yml
|
||||
- local: .gitlab/ci/lint.gitlab-ci.yml
|
||||
- local: .gitlab/ci/doc.gitlab-ci.yml
|
||||
|
|
14
.gitlab/ci/doc.gitlab-ci.yml
Normal file
14
.gitlab/ci/doc.gitlab-ci.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
########################################
|
||||
# DOC
|
||||
########################################
|
||||
|
||||
generate-helpers-doc:
|
||||
stage: doc
|
||||
image: "before-install"
|
||||
needs: []
|
||||
script:
|
||||
- cd doc
|
||||
- python generate_helper_doc.py
|
||||
artifacts:
|
||||
paths:
|
||||
- doc/helpers.html
|
|
@ -5,6 +5,7 @@
|
|||
lint:
|
||||
stage: lint
|
||||
image: "before-install"
|
||||
needs: []
|
||||
allow_failure: true
|
||||
script:
|
||||
- tox -e lint
|
||||
|
@ -12,6 +13,7 @@ lint:
|
|||
invalidcode:
|
||||
stage: lint
|
||||
image: "before-install"
|
||||
needs: []
|
||||
script:
|
||||
- tox -e invalidcode
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue