From adddc26bd76a5df42d9aaa0295c6f517f155b7f7 Mon Sep 17 00:00:00 2001 From: Viacheslav Poturaev Date: Sun, 24 Dec 2023 02:09:57 +0100 Subject: [PATCH] Downgrade linux-amd64 GLIBC deps (#10) --- .github/workflows/release-assets.yml | 2 +- cmd/catp/README.md | 3 ++- cmd/catp/catp/app.go | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-assets.yml b/.github/workflows/release-assets.yml index 06a3906..515af94 100644 --- a/.github/workflows/release-assets.yml +++ b/.github/workflows/release-assets.yml @@ -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' diff --git a/cmd/catp/README.md b/cmd/catp/README.md index ab94610..ceb209d 100644 --- a/cmd/catp/README.md +++ b/cmd/catp/README.md @@ -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 diff --git a/cmd/catp/catp/app.go b/cmd/catp/catp/app.go index 0b78cfc..db8f2fb 100644 --- a/cmd/catp/catp/app.go +++ b/cmd/catp/catp/app.go @@ -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")