Skip to content

Commit

Permalink
Downgrade linux-amd64 GLIBC deps (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
vearutop authored Dec 24, 2023
1 parent 540e042 commit adddc26
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
jobs:
build:
name: Upload Release Assets
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Install Go stable
if: env.GO_VERSION != 'tip'
Expand Down
3 changes: 2 additions & 1 deletion cmd/catp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ Usage of catp:
output to file instead of STDOUT
-parallel int
number of parallel readers if multiple files are provided
lines from different files will go to output simultaneouslyuse 0 for multi-threaded zst decoder (slightly faster at cost of more CPU) (default 1)
lines from different files will go to output simultaneously
use 0 for multi-threaded zst decoder (slightly faster at cost of more CPU) (default 1)
-progress-json string
write current progress to a file
-version
Expand Down
2 changes: 1 addition & 1 deletion cmd/catp/catp/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ func Main() error { //nolint:funlen,cyclop,gocognit,gocyclo
"for example, you can use '-grep bar\\|baz -grep foo' to only keep lines that have (bar OR baz) AND foo")

parallel := flag.Int("parallel", 1, "number of parallel readers if multiple files are provided\n"+
"lines from different files will go to output simultaneously"+
"lines from different files will go to output simultaneously\n"+
"use 0 for multi-threaded zst decoder (slightly faster at cost of more CPU)")

cpuProfile := flag.String("dbg-cpu-prof", "", "write first 10 seconds of CPU profile to file")
Expand Down

0 comments on commit adddc26

Please sign in to comment.