forked from bro/broctl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
42 lines (34 loc) · 684 Bytes
/
Copy path.travis.yml
File metadata and controls
42 lines (34 loc) · 684 Bytes
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
dist: bionic
language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
addons:
apt:
packages:
- libpcap-dev
- swig
branches:
only:
- master
notifications:
email:
recipients:
- zeek-commits-internal@zeek.org
before_install:
# Clone the zeek git repo and replace zeekctl.
- cd ..
- tar cf zeekctl.tar --exclude=.git zeekctl
- rm -rf zeekctl
- git clone --recursive https://github.com/zeek/zeek zeek
- rm -rf zeek/auxil/zeekctl
- tar xf zeekctl.tar -C zeek/auxil
- rm -f zeekctl.tar
- cd zeek/auxil/zeekctl/testing
install:
- make buildzeek
script: ../../btest/btest -f diag.log -A
after_failure: cat diag.log