-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitlab-ci.yml
88 lines (81 loc) · 1.92 KB
/
.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
stages:
- test
- build
build-doc:
stage: build
only:
- branches@poezio/poezio
tags:
- www
image: docker.louiz.org/poezio/poezio/doc-builder
script:
- ./update.sh
- . ./poezio-venv/bin/activate
- make doc
- rm -rf /www/latest
- mv doc/build/html/ /www/latest
build-ubuntu:
stage: build
image: python:3
script:
- python3 setup.py sdist
- python3 setup.py bdist
artifacts:
expire_in: 2 weeks
paths:
- dist/
only:
- master
security-check:
stage: test
image: python:3
script:
- pip3 install safety
- safety check -r requirements.txt
pytest-3.5:
stage: test
image: python:3.5
script:
- apt-get update && apt-get install -y libidn11-dev
- git clone git://git.louiz.org/slixmpp
- pip3 install pytest pyasn1-modules cffi --upgrade
- cd slixmpp
- python3 setup.py install
- cd ..
- python3 setup.py install
- py.test -v test/
pytest-3.6:
stage: test
image: python:3.6
script:
- apt-get update && apt-get install -y libidn11-dev
- git clone git://git.louiz.org/slixmpp
- pip3 install pytest pyasn1-modules cffi --upgrade
- cd slixmpp
- python3 setup.py install
- cd ..
- python3 setup.py install
- py.test -v test/
pytest-latest:
stage: test
image: python:3
script:
- apt-get update && apt-get install -y libidn11-dev
- git clone git://git.louiz.org/slixmpp
- pip3 install pytest pyasn1-modules cffi --upgrade
- cd slixmpp
- python3 setup.py install
- cd ..
- python3 setup.py install
- py.test -v test/
pylint-plugins:
stage: test
image: python:3
allow_failure: true
script:
- apt-get update && apt-get install -y libidn11-dev
- pip3 install pylint pyasn1-modules cffi --upgrade
- pip3 install -e git+git://git.louiz.org/slixmpp#egg=slixmpp
- pip3 install -r requirements-plugins.txt
- python3 setup.py install
- pylint -E plugins