File tree Expand file tree Collapse file tree 4 files changed +55
-2
lines changed Expand file tree Collapse file tree 4 files changed +55
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Zeek matrix tests
2
+
3
+ on :
4
+ push :
5
+ branches : ["master"]
6
+ pull_request :
7
+
8
+ jobs :
9
+ test :
10
+ name : test-${{ matrix.zeekver }}
11
+ runs-on : ubuntu-latest
12
+ strategy :
13
+ fail-fast : false
14
+ matrix :
15
+ zeekver : [zeek, zeek-lts, zeek-nightly]
16
+ steps :
17
+ - uses : actions/checkout@v3
18
+ - uses : zeek/action-zkg-install@v2
19
+ with :
20
+ zeek_version : ${{ matrix.zeekver }}
21
+ pkg_sysdeps : libfuzzy-dev libtlsh-dev
22
+ - uses : actions/upload-artifact@v4
23
+ if : failure()
24
+ with :
25
+ name : zkg-logs-${{ matrix.zeekver }}
26
+ path : ${{ github.workspace }}/.action-zkg-install/artifacts
Original file line number Diff line number Diff line change
1
+ name : Zeek nightly build
2
+
3
+ on :
4
+ schedule :
5
+ - cron : 30 6 * * 1
6
+
7
+ jobs :
8
+ test-nightly :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : zeek/action-zkg-install@v2
12
+ with :
13
+ pkg : ${{ github.server_url }}/${{ github.repository }}
14
+ pkg_sysdeps : libfuzzy-dev libtlsh-dev
15
+ zeek_version : zeek-nightly
16
+ - uses : actions/upload-artifact@v4
17
+ if : failure()
18
+ with :
19
+ name : zkg-logs
20
+ path : ${{ github.workspace }}/.action-zkg-install/artifacts
Original file line number Diff line number Diff line change
1
+ # We load nothing by default
2
+
Original file line number Diff line number Diff line change @@ -3,5 +3,10 @@ description = This plugin provides fuzzy hashing for Zeek.
3
3
tags = fuzzy hashing, ssdeep, TLSH
4
4
plugin_dir = build/JGras_FuzzyHashing.tgz
5
5
script_dir = scripts
6
- build_command = ./configure && cmake --build build
7
- test_command = cd testing && btest -c btest.cfg
6
+ build_command = make
7
+ test_command = make test
8
+ depends =
9
+ zeek >=7.0.0
10
+ external_depends =
11
+ libfuzzy-dev
12
+ libtlsh-dev
You can’t perform that action at this time.
0 commit comments