Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
44f1278
add chimera library
flier Sep 23, 2021
79be099
Merge branch 'master' into features/chimera
flier Sep 23, 2021
fad9e25
force to use C++ compiler
flier Sep 23, 2021
95450aa
refactor internal and add chimera
flier Sep 24, 2021
8213a65
test chiema API
flier Sep 24, 2021
310fe63
add section to build chimera
flier Sep 25, 2021
5a1f40c
build with docker
flier Sep 26, 2021
48ed8bd
install hyperscan with flier/install-hyperscan@main
flier Sep 26, 2021
c23bd7f
compile patterns with database builder
flier Sep 27, 2021
47d5018
improve examples
flier Sep 27, 2021
5b8fdcd
make go test -race happy
flier Sep 30, 2021
7a9f702
upgrade dependencies
flier Sep 30, 2021
445256f
run and upload coverage to Codecov
flier Sep 30, 2021
46b29b2
include <stdint.h>
flier Sep 30, 2021
c4079fa
use CODECOV_TOKEN from secrets
flier Sep 30, 2021
ab80419
run coverage base on matrix setting
flier Sep 30, 2021
ce63ea8
add codecov badge
flier Sep 30, 2021
98b061a
Merge remote-tracking branch 'origin/master' into features/chimera
flier Nov 23, 2021
3dc6614
Merge remote-tracking branch 'origin/master' into features/chimera
flier Nov 24, 2021
5a93585
replace Expression with string for back compatibility
flier Nov 24, 2021
f123508
add benchmark for chimera
flier Nov 24, 2021
fce3c0e
ignore scan flags in MatchRecorder.Handle
flier Nov 24, 2021
f7edc13
fix lint warning
flier Nov 24, 2021
84539c6
Merge remote-tracking branch 'origin/master' into features/chimera
flier Nov 24, 2021
6abc2e8
Merge remote-tracking branch 'origin/master' into features/chimera
flier Nov 24, 2021
445e752
remove unused package
flier Nov 24, 2021
1c6de84
use chimera build tag to enable chimera support
flier Apr 10, 2022
22ead3e
Merge branch 'features/chimera' of https://github.com/flier/gohs into…
flier Apr 10, 2022
db4a452
upgrade dependencies
flier Apr 10, 2022
372c7ae
add chimera build tag
flier Apr 10, 2022
b3167f7
use build tag `hyperscan_v52` for literal support
flier Apr 10, 2022
6a9dcf4
fix spell error
flier Apr 10, 2022
2c64a98
format code
flier Apr 10, 2022
f14fec4
upgrade to actions/cache@v3
flier Apr 11, 2022
29e2638
use flier/install-hyperscan action to cache hyperscan
flier Apr 11, 2022
234a807
fix test cases for docker
flier Apr 11, 2022
16a18a2
upgrade to golangci/golangci-lint-action@v3
flier Apr 11, 2022
42300bc
fix lint warning
flier Apr 11, 2022
f7e2e6c
make golangci-lint happy
flier Apr 11, 2022
1412847
add chimera tag for ubuntu 20.04 and hyperscan 5.1.1
flier Apr 11, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use CODECOV_TOKEN from secrets
  • Loading branch information
flier committed Sep 30, 2021
commit c4079fab63050f6cb87531695184c011e0960d9b
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,6 @@ jobs:
brew update
brew install pkg-config libpcap ragel cmake boost ninja lzlib wget tree

- uses: actions/checkout@v2

- name: Cache Hyperscan library
id: cache-hyperscan
uses: actions/cache@v2
Expand Down Expand Up @@ -158,6 +156,8 @@ jobs:
restore-keys: |
${{ runner.os }}-go-

- uses: actions/checkout@v2

- name: Test Hyperscan API
run: |
go test -v ${{ matrix.build_tags }} ./internal/hs/... ./hyperscan/...
Expand All @@ -171,6 +171,8 @@ jobs:

- name: Run and upload coverage to Codecov
if: startsWith(matrix.hyperscan, '5.4.')
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: |
go test -race -coverprofile=coverage.out -covermode=atomic ./...
bash <(curl -s https://codecov.io/bash)
Expand Down