Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dev
MAGE Multiview Artificial Generation Engine
Commits
4249fabc
Commit
4249fabc
authored
Apr 22, 2020
by
Baptiste Bauvin
Browse files
Docker ?
parent
d0278765
Pipeline
#4718
failed with stage
in 1 minute and 2 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
4249fabc
# run the test suite
tests
:
image
:
registry.gitlab.lis-lab.fr:5005/dev/mutliview_generator/ubuntu:18.04
tags
:
-
docker
script
:
-
pip install -e . --no-deps
-
pytest-3
# generate the documentation
doc
:
image
:
registry.gitlab.lis-lab.fr:5005/dev/multiview_generator/ubuntu:18.04
tags
:
-
docker
only
:
-
master
script
:
-
export LC_ALL=$(locale -a | grep en_US)
-
export LANG=$(locale -a | grep en_US)
-
pip3 install -e . --no-deps
-
sphinx-apidoc -o docs/source multiview_generator
-
cd docs/source
-
sphinx-build -b html . ../build
-
cd ../..
-
cp -r ./docs/build public
artifacts
:
paths
:
-
public
# TODO: Replace the task doc by the following task pages when making the
# project public
#
pages
:
image
:
registry.gitlab.lis-lab.fr:5005/dev/multiview_generator/ubuntu:18.04
tags
:
-
docker
only
:
-
master
script
:
-
export LC_ALL=$(locale -a | grep en_US)
-
export LANG=$(locale -a | grep en_US)
-
sphinx-apidoc -o docs/source multiview_generator
-
cd docs/source
-
sphinx-build -b html . ../build
-
cd ../..
-
cp -r ./docs/build public
artifacts
:
paths
:
-
public
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment