forked from scarletcafe/jishaku
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
140 lines (127 loc) · 2.7 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
stages:
- build
- deploy
.pypi_dependencies: &pypi_dependencies
before_script:
- pip install -U $(find requirements -name *.txt -print | sed -e 's/^/-r /' | tr '\n' ' ')
.git_dependencies: &git_dependencies
before_script:
- pip install -U "disnake[voice] @ git+https://github.com/DisnakeDev/disnake@master"
- pip install -U $(find requirements -name *.txt -print | sed -e 's/^/-r /' | tr '\n' ' ')
.run_tests: &run_tests
script:
- PYTHONPATH="$(pwd)" pytest -vs --cov=jishaku --cov-report term-missing:skip-covered
- flake8 .
- pylint -j "$(nproc)" jishaku
- isort . --check-only
- python ./setup.py sdist bdist_egg bdist_wheel
- rm -rf jishaku
- find dist -name *.whl -exec pip install '{}' +
- PYTHONPATH="$(pwd)" pytest -vs
- cd docs && make html
buster 3.9 git:
stage: build
image: gorialis/discord.py:3.9-buster-master
<<: *git_dependencies
<<: *run_tests
artifacts:
paths:
- dist
- docs/_build
expire_in: 2 days
retry: 1
when: always
buster 3.9 pypi:
stage: build
image: gorialis/discord.py:3.9-buster-pypi
<<: *pypi_dependencies
<<: *run_tests
artifacts:
paths:
- dist
- docs/_build
expire_in: 2 days
retry: 1
when: always
buster 3.8 git:
stage: build
image: gorialis/discord.py:3.8-buster-master
<<: *git_dependencies
<<: *run_tests
artifacts:
paths:
- dist
- docs/_build
expire_in: 2 days
retry: 1
when: always
buster 3.8 pypi:
stage: build
image: gorialis/discord.py:3.8-buster-pypi
<<: *pypi_dependencies
<<: *run_tests
artifacts:
paths:
- dist
- docs/_build
expire_in: 2 days
retry: 1
when: always
alpine 3.9 git:
stage: build
image: gorialis/discord.py:3.9-alpine-master
<<: *git_dependencies
<<: *run_tests
artifacts:
paths:
- dist
- docs/_build
expire_in: 2 days
retry: 1
when: always
alpine 3.9 pypi:
stage: build
image: gorialis/discord.py:3.9-alpine-pypi
<<: *pypi_dependencies
<<: *run_tests
artifacts:
paths:
- dist
- docs/_build
expire_in: 2 days
retry: 1
when: always
alpine 3.8 git:
stage: build
image: gorialis/discord.py:3.8-alpine-master
<<: *git_dependencies
<<: *run_tests
artifacts:
paths:
- dist
- docs/_build
expire_in: 2 days
retry: 1
when: always
alpine 3.8 pypi:
stage: build
image: gorialis/discord.py:3.8-alpine-pypi
<<: *pypi_dependencies
<<: *run_tests
artifacts:
paths:
- dist
- docs/_build
expire_in: 2 days
retry: 1
when: always
pages:
stage: deploy
image: alpine:latest
script:
- mv docs/_build/html public
artifacts:
paths:
- public
only:
- master