Compare commits
6 Commits
master
...
doc-testin
Author | SHA1 | Date | |
---|---|---|---|
|
1896994418 | ||
|
ded9592317 | ||
|
9db30877b9 | ||
|
87c2cecf14 | ||
|
cdbf59619e | ||
|
5b2211d95b |
@ -2,9 +2,11 @@ stages:
|
|||||||
- test
|
- test
|
||||||
- build
|
- build
|
||||||
- deploy
|
- deploy
|
||||||
|
- doc
|
||||||
|
|
||||||
|
|
||||||
include:
|
include:
|
||||||
- local: .gitlab/ci/test.gitlab-ci.yml
|
- local: .gitlab/ci/test.gitlab-ci.yml
|
||||||
- local: .gitlab/ci/build.gitlab-ci.yml
|
- local: .gitlab/ci/build.gitlab-ci.yml
|
||||||
- local: .gitlab/ci/deploy.gitlab-ci.yml
|
- local: .gitlab/ci/deploy.gitlab-ci.yml
|
||||||
|
- local: .gitlab/ci/doc.gitlab-ci.yml
|
||||||
|
@ -7,3 +7,8 @@ build:
|
|||||||
name: multi_user
|
name: multi_user
|
||||||
paths:
|
paths:
|
||||||
- multi_user
|
- multi_user
|
||||||
|
only:
|
||||||
|
refs:
|
||||||
|
- master
|
||||||
|
|
||||||
|
|
||||||
|
@ -17,3 +17,7 @@ deploy:
|
|||||||
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
||||||
- docker tag registry.gitlab.com/slumber/multi-user/multi-user-server:${VERSION} registry.gitlab.com/slumber/multi-user/multi-user-server:${CI_COMMIT_REF_NAME}
|
- docker tag registry.gitlab.com/slumber/multi-user/multi-user-server:${VERSION} registry.gitlab.com/slumber/multi-user/multi-user-server:${CI_COMMIT_REF_NAME}
|
||||||
- docker push registry.gitlab.com/slumber/multi-user/multi-user-server
|
- docker push registry.gitlab.com/slumber/multi-user/multi-user-server
|
||||||
|
only:
|
||||||
|
refs:
|
||||||
|
- master
|
||||||
|
|
||||||
|
11
.gitlab/ci/doc.gitlab-ci.yml
Normal file
11
.gitlab/ci/doc.gitlab-ci.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
pages:
|
||||||
|
stage: doc
|
||||||
|
image: python:3.7-alpine
|
||||||
|
script:
|
||||||
|
- pip install -U sphinx sphinx_rtd_theme
|
||||||
|
- sphinx-build -b html ./docs public
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- public
|
||||||
|
|
||||||
|
|
@ -3,3 +3,6 @@ test:
|
|||||||
image: slumber/blender-addon-testing:latest
|
image: slumber/blender-addon-testing:latest
|
||||||
script:
|
script:
|
||||||
- python3 scripts/test_addon.py
|
- python3 scripts/test_addon.py
|
||||||
|
only:
|
||||||
|
refs:
|
||||||
|
- master
|
||||||
|
Loading…
Reference in New Issue
Block a user