We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21664c5 commit 6e9c05fCopy full SHA for 6e9c05f
Makefile
@@ -37,9 +37,12 @@ GOARCH := $(shell go env GOARCH)
37
GOOS_BIN_EXT := $(if $(filter windows, $(GOOS)),.exe,)
38
VERSION := $(shell ./scripts/version.sh)
39
40
-# Use the highest ZSTD compression level for the release binaries. For
41
-# development, a sane lower value would be `make build ZSTDFLAGS=-6`.
+# Use the highest ZSTD compression level in CI.
+ifdef CI
42
ZSTDFLAGS := -22 --ultra
43
+else
44
+ZSTDFLAGS := -6
45
+endif
46
47
# All ${OS}_${ARCH} combos we build for. Windows binaries have the .exe suffix.
48
OS_ARCHES := \
0 commit comments