-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
286 lines (267 loc) · 9.86 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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
---
sudo: required
dist: focal
notifications:
slack:
on_failure: always
fleet_script_osquery_arm64_tasks : &fleet_script_osquery_arm64_tasks
script:
- echo "============================================="
- echo "=============Installing Osquery debian arm64=============="
- wget -q https://pkg.osquery.io/deb/osquery_4.5.1_1.linux.arm64.deb
- sudo dpkg -i osquery_4.5.1_1.linux.arm64.deb
- sudo osqueryctl start osqueryd
- sudo osqueryctl status osqueryd
- echo "============================================="
fleet_script_osquery_tasks : &fleet_script_osquery_tasks
script:
- echo "============================================="
- echo "=============Installing Osquery debian=============="
- export OSQUERY_KEY=1484120AC4E9F8A1A577AEEE97A80C63C9D8B80B
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys $OSQUERY_KEY
- sudo add-apt-repository 'deb [arch=amd64] https://pkg.osquery.io/deb deb main'
- sudo apt update && sudo apt install osquery -y
- sudo osqueryctl start osqueryd
- sudo osqueryctl status osqueryd
- echo "============================================="
fleet_script_tasks : &fleet_script_tasks
script:
- python --version
fleet_install_tasks : &fleet_install_tasks
install:
- pip install -r requirements.txt
matrix:
fast_finish: true
include:
# https://osquery.io/blog/linux-arm64-beta-support
- name: "Python 3.7 on focal arm64/ppc64le/s390x/amd64/arm64-graviton2"
arch:
- arm64
- ppc64le
- s390x
- amd64
# - arm64-graviton2
os: linux
dist: focal
language: c
compiler:
- gcc
- clang
script:
- make all
after_success:
- deactivate
# https://osquery.io/blog/linux-arm64-beta-support
- name: "Python 3.7 on focal arm64-graviton2"
arch:
- arm64-graviton2
os: linux
dist: focal
language: python
# python: 3.7
before_install:
- pip3 install virtualenv
- virtualenv -p $(which python3) ~venvpy3
- source ~venvpy3/bin/activate
- python --version
- pip install -r requirements.txt
script:
- echo "============================================="
- echo "=============Installing Osquery debian arm64=============="
# - export OSQUERY_KEY=1484120AC4E9F8A1A577AEEE97A80C63C9D8B80B
# - sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys $OSQUERY_KEY
# - sudo add-apt-repository 'deb [arch=amd64] https://pkg.osquery.io/deb deb main'
# - sudo apt update && sudo apt install osquery -y
- wget -q https://pkg.osquery.io/deb/osquery_4.5.1_1.linux.arm64.deb
- sudo dpkg -i osquery_4.5.1_1.linux.arm64.deb
- sudo osqueryctl start osqueryd
- sudo osqueryctl status osqueryd
- echo "============================================="
after_success:
- deactivate
# https://osquery.io/blog/linux-arm64-beta-support
- name: "Python 3.7 on focal arm64"
os: linux
arch: arm64
dist: focal
language: python
# python: 3.7
before_install:
- pip3 install virtualenv
- virtualenv -p $(which python3) ~venvpy3
- source ~venvpy3/bin/activate
- python --version
- pip install -r requirements.txt
script:
- echo "============================================="
- echo "=============Installing Osquery debian arm64=============="
# - export OSQUERY_KEY=1484120AC4E9F8A1A577AEEE97A80C63C9D8B80B
# - sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys $OSQUERY_KEY
# - sudo add-apt-repository 'deb [arch=amd64] https://pkg.osquery.io/deb deb main'
# - sudo apt update && sudo apt install osquery -y
- wget -q https://pkg.osquery.io/deb/osquery_4.5.1_1.linux.arm64.deb
- sudo dpkg -i osquery_4.5.1_1.linux.arm64.deb
- sudo osqueryctl start osqueryd
- sudo osqueryctl status osqueryd
- echo "============================================="
after_success:
- deactivate
- name: "Python 3.7 on focal amd64"
os: linux
arch: amd64
dist: focal
language: python
python: 3.7
before_install:
- pip3 install virtualenv
- virtualenv -p $(which python3) ~venvpy3
- source ~venvpy3/bin/activate
- python --version
- pip install -r requirements.txt
script:
- echo "============================================="
- echo "=============Installing Osquery debian=============="
- export OSQUERY_KEY=1484120AC4E9F8A1A577AEEE97A80C63C9D8B80B
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys $OSQUERY_KEY
- sudo add-apt-repository 'deb [arch=amd64] https://pkg.osquery.io/deb deb main'
- sudo apt update && sudo apt install osquery -y
- sudo osqueryctl start osqueryd
- sudo osqueryctl status osqueryd
- echo "============================================="
after_success:
- deactivate
# https://osquery.io/blog/linux-arm64-beta-support
- name: "Python 3.7 on focal ppc64le"
arch:
- ppc64le
os: linux
dist: focal
language: python
# python: 3.7
before_install:
- pip3 install virtualenv
- virtualenv -p $(which python3) ~venvpy3
- source ~venvpy3/bin/activate
- python --version
- pip install -r requirements.txt
script:
- echo "============================================="
- echo "=============Installing Osquery debian arm64=============="
# - export OSQUERY_KEY=1484120AC4E9F8A1A577AEEE97A80C63C9D8B80B
# - sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys $OSQUERY_KEY
# - sudo add-apt-repository 'deb [arch=amd64] https://pkg.osquery.io/deb deb main'
# - sudo apt update && sudo apt install osquery -y
- wget -q https://pkg.osquery.io/deb/osquery_4.5.1_1.linux.arm64.deb
- sudo dpkg -i osquery_4.5.1_1.linux.arm64.deb
- sudo osqueryctl start osqueryd
- sudo osqueryctl status osqueryd
- echo "============================================="
after_success:
- deactivate
# https://osquery.io/blog/linux-arm64-beta-support
- name: "Python 3.7 on focal s390x"
arch:
- s390x
os: linux
dist: focal
language: python
# python: 3.7
before_install:
- pip3 install virtualenv
- virtualenv -p $(which python3) ~venvpy3
- source ~venvpy3/bin/activate
- python --version
- pip install -r requirements.txt
script:
- echo "============================================="
- echo "=============Installing Osquery debian arm64=============="
# - export OSQUERY_KEY=1484120AC4E9F8A1A577AEEE97A80C63C9D8B80B
# - sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys $OSQUERY_KEY
# - sudo add-apt-repository 'deb [arch=amd64] https://pkg.osquery.io/deb deb main'
# - sudo apt update && sudo apt install osquery -y
- wget -q https://pkg.osquery.io/deb/osquery_4.5.1_1.linux.arm64.deb
- sudo dpkg -i osquery_4.5.1_1.linux.arm64.deb
- sudo osqueryctl start osqueryd
- sudo osqueryctl status osqueryd
- echo "============================================="
after_success:
- deactivate
- name: "Python 3.7 on bionic amd64"
os: linux
arch: amd64
dist: bionic
language: python
python: 3.7
before_install:
- pip3 install virtualenv
- virtualenv -p $(which python3) ~venvpy3
- source ~venvpy3/bin/activate
# <<: *fleet_install_tasks
# <<: *fleet_script_tasks
# <<: *fleet_script_osquery_tasks
script:
- sudo make deploy-linux-debian-amd64
after_success:
- deactivate
- name: "Python 3.7 on bionic arm64"
os: linux
arch: arm64
dist: bionic
language: python
python: 3.7
before_install:
- pip3 install virtualenv
- virtualenv -p $(which python3) ~venvpy3
- source ~venvpy3/bin/activate
# <<: *fleet_install_tasks
# <<: *fleet_script_tasks
# <<: *fleet_script_osquery_tasks
script:
- sudo make deploy-linux-debian-arm64
after_success:
- deactivate
- name: "Python 3.7 on xenial amd64"
os: linux
arch: amd64
dist: xenial
language: python
python: 3.7
before_install:
- pip3 install virtualenv
- virtualenv -p $(which python3) ~venvpy3
- source ~venvpy3/bin/activate
<<: *fleet_install_tasks
<<: *fleet_script_tasks
<<: *fleet_script_osquery_tasks
after_success:
- deactivate
- name: "Python 3.7 on xenial arm64"
os: linux
arch: arm64
dist: xenial
language: python
python: 3.7
before_install:
- pip3 install virtualenv
- virtualenv -p $(which python3) ~venvpy3
- source ~venvpy3/bin/activate
<<: *fleet_install_tasks
<<: *fleet_script_tasks
<<: *fleet_script_osquery_arm64_tasks
after_success:
- deactivate
- name: "Python 2.7 on xenial"
os: linux
arch: amd64
dist: xenial
language: python
python: 2.7
before_install:
- pip install virtualenv
- virtualenv -p $(which python2) ~venvpy2
- source ~venvpy2/bin/activate
<<: *fleet_install_tasks
<<: *fleet_script_tasks
<<: *fleet_script_osquery_tasks
after_success:
- deactivate