forked from chaoss/grimoirelab-elk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
186 lines (148 loc) · 6.1 KB
/
.travis.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
language: python
sudo: false
services:
- mysql
jobs:
include:
- python:
- "3.5"
name: "Python 3.5 for ES 6.1.0"
before_install:
- curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.1.0.deb && sudo dpkg -i --force-confnew elasticsearch-6.1.0.deb && sudo service elasticsearch restart
- pip install --upgrade setuptools
- pip install --upgrade pip
- pip install flake8
- pip install coveralls
- pip install -r "requirements.txt"
- pip install -r "requirements_tests.txt"
before_script:
- sleep 20
script:
- flake8 .
- mysqladmin -u root create test_sh
- mysqladmin -u root create test_projects
- mysql -u root test_projects < tests/test_projects.sql
- cd tests
- coverage run --source=grimoire_elk run_tests.py
after_success:
- coveralls
- python:
- "3.6"
name: "Python 3.6 for ES 6.1.0"
before_install:
- curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.1.0.deb && sudo dpkg -i --force-confnew elasticsearch-6.1.0.deb && sudo service elasticsearch restart
- pip install flake8
- pip install coveralls
- pip install -r "requirements.txt"
- pip install -r "requirements_tests.txt"
before_script:
- sleep 20
script:
- flake8 .
- mysqladmin -u root create test_sh
- mysqladmin -u root create test_projects
- mysql -u root test_projects < tests/test_projects.sql
- cd tests
- coverage run --source=grimoire_elk run_tests.py
after_success:
- coveralls
- python:
- "3.7"
name: "Python 3.7 for ES 6.1.0"
before_install:
- curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.1.0.deb && sudo dpkg -i --force-confnew elasticsearch-6.1.0.deb && sudo service elasticsearch restart
- pip install flake8
- pip install coveralls
- pip install -r "requirements.txt"
- pip install -r "requirements_tests.txt"
before_script:
- sleep 20
script:
- flake8 .
- mysqladmin -u root create test_sh
- mysqladmin -u root create test_projects
- mysql -u root test_projects < tests/test_projects.sql
- cd tests
- coverage run --source=grimoire_elk run_tests.py
after_success:
- coveralls
- python:
- "3.5"
name: "Python 3.5 for ES 7.2.0"
before_install:
- curl -s -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.2.0-amd64.deb
- sudo dpkg -i --force-confnew elasticsearch-7.2.0-amd64.deb
- sudo sed -i.old 's/-Xms1g/-Xms128m/' /etc/elasticsearch/jvm.options
- sudo sed -i.old 's/-Xmx1g/-Xmx128m/' /etc/elasticsearch/jvm.options
- echo -e '-XX:+DisableExplicitGC\n-Djdk.io.permissionsUseCanonicalPath=true\n-Dlog4j.skipJansi=true\n-server\n' | sudo tee -a /etc/elasticsearch/jvm.options
- sudo chown -R elasticsearch:elasticsearch /etc/default/elasticsearch
- sudo systemctl start elasticsearch
- pip install --upgrade setuptools
- pip install --upgrade pip
- pip install flake8
- pip install coveralls
- pip install -r "requirements.txt"
- pip install -r "requirements_tests.txt"
before_script:
- sleep 20
script:
- flake8 .
- mysqladmin -u root create test_sh
- mysqladmin -u root create test_projects
- mysql -u root test_projects < tests/test_projects.sql
- cd tests
- coverage run --source=grimoire_elk run_tests.py
after_success:
- coveralls
- python:
- "3.6"
name: "Python 3.6 for ES 7.2.0"
before_install:
- curl -s -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.2.0-amd64.deb
- sudo dpkg -i --force-confnew elasticsearch-7.2.0-amd64.deb
- sudo sed -i.old 's/-Xms1g/-Xms128m/' /etc/elasticsearch/jvm.options
- sudo sed -i.old 's/-Xmx1g/-Xmx128m/' /etc/elasticsearch/jvm.options
- echo -e '-XX:+DisableExplicitGC\n-Djdk.io.permissionsUseCanonicalPath=true\n-Dlog4j.skipJansi=true\n-server\n' | sudo tee -a /etc/elasticsearch/jvm.options
- sudo chown -R elasticsearch:elasticsearch /etc/default/elasticsearch
- sudo systemctl start elasticsearch
- pip install flake8
- pip install coveralls
- pip install -r "requirements.txt"
- pip install -r "requirements_tests.txt"
before_script:
- sleep 20
script:
- flake8 .
- mysqladmin -u root create test_sh
- mysqladmin -u root create test_projects
- mysql -u root test_projects < tests/test_projects.sql
- cd tests
- coverage run --source=grimoire_elk run_tests.py
after_success:
- coveralls
- python:
- "3.7"
name: "Python 3.7 for ES 7.2.0"
before_install:
- curl -s -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.2.0-amd64.deb
- sudo dpkg -i --force-confnew elasticsearch-7.2.0-amd64.deb
- sudo sed -i.old 's/-Xms1g/-Xms128m/' /etc/elasticsearch/jvm.options
- sudo sed -i.old 's/-Xmx1g/-Xmx128m/' /etc/elasticsearch/jvm.options
- echo -e '-XX:+DisableExplicitGC\n-Djdk.io.permissionsUseCanonicalPath=true\n-Dlog4j.skipJansi=true\n-server\n' | sudo tee -a /etc/elasticsearch/jvm.options
- sudo chown -R elasticsearch:elasticsearch /etc/default/elasticsearch
- sudo systemctl start elasticsearch
- pip install flake8
- pip install coveralls
- pip install -r "requirements.txt"
- pip install -r "requirements_tests.txt"
before_script:
- sleep 20
script:
- flake8 .
- mysqladmin -u root create test_sh
- mysqladmin -u root create test_projects
- mysql -u root test_projects < tests/test_projects.sql
- cd tests
- coverage run --source=grimoire_elk run_tests.py
after_success:
- coveralls