Skip to content

Commit dce122e

Browse files
committed
remove chimera build tag
1 parent 0ea84f8 commit dce122e

30 files changed

+4
-91
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: [ubuntu-22.04, ubuntu-20.04, macos-12, macos-11]
22-
go: [stable, 1.20.x, 1.19.x, 1.18.x]
22+
go: [stable, 1.22.x, 1.18.x]
2323
name: Go ${{ matrix.go }} tests @ ${{ matrix.os }} for hyperscan
2424
runs-on: ${{ matrix.os }}
2525
steps:
@@ -34,7 +34,7 @@ jobs:
3434
run: |
3535
brew install hyperscan pkg-config libpcap
3636
37-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v4
3838

3939
- name: Install Golang ${{ matrix.go }}
4040
uses: actions/setup-go@v4
@@ -94,7 +94,7 @@ jobs:
9494
CGO_CFLAGS: -I${{ github.workspace }}/dist/include/hs
9595
CGO_LDFLAGS: -L${{ github.workspace }}/dist/lib
9696
steps:
97-
- uses: actions/checkout@v3
97+
- uses: actions/checkout@v4
9898

9999
- name: Install Hyperscan ${{ matrix.hyperscan }} with PCRE ${{ matrix.pcre_version }}
100100
uses: flier/install-hyperscan@main
@@ -142,7 +142,7 @@ jobs:
142142
143143
- uses: actions/setup-go@v3
144144

145-
- uses: actions/checkout@v3
145+
- uses: actions/checkout@v4
146146

147147
- name: golangci-lint
148148
uses: golangci/golangci-lint-action@v3

bench/go/chimera_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build chimera
2-
// +build chimera
3-
41
package scan_test
52

63
import (

chimera/api.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build chimera
2-
// +build chimera
3-
41
package chimera
52

63
import (

chimera/api_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build chimera
2-
// +build chimera
3-
41
package chimera_test
52

63
import (

chimera/block.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build chimera
2-
// +build chimera
3-
41
package chimera
52

63
import (

chimera/common.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build chimera
2-
// +build chimera
3-
41
package chimera
52

63
import (

chimera/common_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build chimera
2-
// +build chimera
3-
41
package chimera_test
52

63
import (

chimera/compile.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build chimera
2-
// +build chimera
3-
41
package chimera
52

63
import (

chimera/compile_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build chimera
2-
// +build chimera
3-
41
package chimera_test
52

63
import (

chimera/doc.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build chimera
2-
// +build chimera
3-
41
// Chimera is a software regular expression matching engine that is a hybrid of Hyperscan and PCRE.
52
// The design goals of Chimera are to fully support PCRE syntax as well as to
63
// take advantage of the high performance nature of Hyperscan.

0 commit comments

Comments
 (0)