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
|
- install
|
||||||
- tests
|
- tests
|
||||||
- lint
|
- lint
|
||||||
|
- doc
|
||||||
|
|
||||||
default:
|
default:
|
||||||
tags:
|
tags:
|
||||||
|
@ -18,3 +19,4 @@ include:
|
||||||
- local: .gitlab/ci/install.gitlab-ci.yml
|
- local: .gitlab/ci/install.gitlab-ci.yml
|
||||||
- local: .gitlab/ci/test.gitlab-ci.yml
|
- local: .gitlab/ci/test.gitlab-ci.yml
|
||||||
- local: .gitlab/ci/lint.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:
|
lint:
|
||||||
stage: lint
|
stage: lint
|
||||||
image: "before-install"
|
image: "before-install"
|
||||||
|
needs: []
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
script:
|
script:
|
||||||
- tox -e lint
|
- tox -e lint
|
||||||
|
@ -12,6 +13,7 @@ lint:
|
||||||
invalidcode:
|
invalidcode:
|
||||||
stage: lint
|
stage: lint
|
||||||
image: "before-install"
|
image: "before-install"
|
||||||
|
needs: []
|
||||||
script:
|
script:
|
||||||
- tox -e invalidcode
|
- tox -e invalidcode
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue