openlut/.gitlab-ci.yml

55 lines
1.0 KiB
YAML
Raw Normal View History

2017-01-26 23:38:19 +01:00
image: python:3.5
2017-01-26 23:07:35 +01:00
stages:
- build
- test
- deploy
2017-01-26 23:07:35 +01:00
# - review
2017-01-26 23:11:38 +01:00
before_script:
#~ - apt-get update && apt-get -y install gcc libmagickwand-dev make
- pip3 install -U pip setuptools wheel
- pip3 install -r requirements.txt
- python3 setup.py build_ext -i #Need the C++ extension only.
- mkdir testpath
2017-01-26 23:11:38 +01:00
after_script:
2017-01-26 23:07:35 +01:00
- rm -rf dist build docs/build openlut.egg-info
build:
stage: build
script:
2017-01-26 23:07:35 +01:00
- python3 setup.py sdist #Build source distribution.
- python3 setup.py bdist_wheel #Build Linux wheel.
artifacts:
paths:
- dist
# run tests using the binary built before.
2017-01-26 23:07:35 +01:00
2017-01-26 23:11:38 +01:00
build_docs:
stage: build
2017-01-26 23:07:35 +01:00
script:
- ./mkDocs.sh
artifacts:
paths:
- docs/build/html
test:
stage: test
script:
- python3 tests/suite.py
2017-01-26 23:11:38 +01:00
deploy_docs:
stage: deploy
2017-01-26 23:07:35 +01:00
environment:
name: Documentation
url: https://www.sofusrose.com/openlut
2017-01-26 23:18:27 +01:00
script:
- docs/upload.sh
#~ when: manual
2017-01-26 23:07:35 +01:00
2017-01-26 23:18:27 +01:00