Skip to content

Commit

Permalink
remove the chimera build tag
Browse files Browse the repository at this point in the history
  • Loading branch information
flier committed Dec 1, 2024
1 parent 009f3ed commit cef54b1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,32 +60,32 @@ jobs:
go: stable
hyperscan_version: 5.4.1
pcre_version: 8.45
build_flags: -tags hyperscan_v54,chimera
build_flags: -tags hyperscan_v54
chimera: true
- os: macos-12
go: stable
hyperscan_version: 5.2.1
pcre_version: 8.45
build_flags: -tags hyperscan_v52,chimera
build_flags: -tags hyperscan_v52
chimera: true
- os: macos-11
go: stable
hyperscan_version: 5.1.1
pcre_version: 8.45
build_flags: -tags chimera
build_flags:
chimera: true
- os: ubuntu-22.04
go: stable
hyperscan_version: 5.4.1
pcre_version: 8.45
build_flags: -tags hyperscan_v54,chimera
build_flags: -tags hyperscan_v54
chimera: true
coverage: true
- os: ubuntu-20.04
go: stable
hyperscan_version: 5.2.1
pcre_version: 8.45
build_flags: -tags hyperscan_v52,chimera
build_flags: -tags hyperscan_v52
chimera: true
name: Go ${{ matrix.go }} tests @ ${{ matrix.os }} for hyperscan ${{ matrix.hyperscan_version }}
runs-on: ${{ matrix.os }}
Expand All @@ -107,7 +107,7 @@ jobs:
cache_key: ${{ runner.os }}-build-hyperscan-${{ matrix.hyperscan_version }}-pcre-${{ matrix.pcre_version }}

- name: Install Golang ${{ matrix.go }}
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
cache: true
Expand All @@ -133,19 +133,19 @@ jobs:
golangci:
name: lint
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Install Linux dependencies
run: |
sudo apt-get update
sudo apt-get install -yq libhyperscan-dev libpcap-dev
- uses: actions/setup-go@v3

- uses: actions/checkout@v4

- uses: actions/setup-go@v5

- name: golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6
with:
version: latest
working-directory: hyperscan
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:
hyperscan_version: 5.4.2
pcre_version: 8.45
go_version: 1.23.3
build_flags: -tags hyperscan_v54,chimera
build_flags: -tags hyperscan_v54
- ubuntu_version: 22.04
hyperscan_version: 5.2.1
pcre_version: 8.45
go_version: 1.22.9
build_flags: -tags hyperscan_v52,chimera
build_flags: -tags hyperscan_v52
- ubuntu_version: 20.04
hyperscan_version: 5.1.1
pcre_version: 8.41
build_flags: -tags chimera
build_flags:
go_version: 1.21.13
name: tests @ ubuntu ${{ matrix.ubuntu_version }} for hyperscan ${{ matrix.hyperscan_version }} w/ ${{ matrix.build_flags }}
env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ It is recommended to compile and link Chimera using static libraries.
$ mkdir build && cd build
$ cmake .. -G Ninja -DBUILD_STATIC_LIBS=on
$ ninja && ninja install
$ go get -u -tags chimera github.com/flier/gohs/hyperscan
$ go get -u github.com/flier/gohs/hyperscan
```

### Note
Expand Down

0 comments on commit cef54b1

Please sign in to comment.