Select Git revision
.gitlab-ci.yml
-
Ronan Hamon authoredRonan Hamon authored
.gitlab-ci.yml 753 B
# run the test suite
tests_old_ubuntu:
image: registry.gitlab.lis-lab.fr:5005/skmad-suite/madarrays/ubuntu:16.04
tags:
- docker
script:
- pip3 install . --no-deps
- pytest
tests_new_ubuntu:
image: registry.gitlab.lis-lab.fr:5005/skmad-suite/madarrays/ubuntu:rolling
tags:
- docker
script:
- pip3 install . --no-deps
- pytest-3
# generate the documentation
pages:
image: registry.gitlab.lis-lab.fr:5005/skmad-suite/madarrays/ubuntu:rolling
tags:
- docker
only:
- master
script:
- pip3 install . --no-deps
- python3 setup.py build_sphinx
- cp -r build/sphinx/html public
artifacts:
paths:
- public