-
Notifications
You must be signed in to change notification settings - Fork 94
/
.gitlab-ci.yml
51 lines (46 loc) · 932 Bytes
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
image: python:3.7-slim
stages:
- test
- build
- docs
python3.6:
image:
python:3.6-slim
before_script:
- apt update
- apt install --yes python-pyqt5
- pip install -r requirements.txt
script:
- pytest
stage:
test
python3.7:
image:
python:3.7-slim
before_script:
- apt update
- apt install --yes python-pyqt5
- pip install -r requirements.txt
script:
- pytest
stage:
test
bdist_wheel:
stage:
build
script:
- python setup.py bdist_wheel
artifacts:
paths:
- dist/*.whl
sphinx_html:
stage:
docs
script:
- apt update
- apt install --yes build-essential
- pip install sphinx sphinx-rtd-theme
- cd doc; make html
artifacts:
paths:
- public