Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .seqbench/baseline.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
GOGC=100
GODEBUG=gctrace=1

# For search only scenarios
# GOMEMLIMIT=800MiB

SEQDB_STORAGE_FRAC_SIZE=16MiB
SEQDB_STORAGE_TOTAL_SIZE=10GiB
Expand Down
6 changes: 6 additions & 0 deletions .seqbench/comparison.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
GOGC=100
GODEBUG=gctrace=1
GO_VERSION=1.26rc2
GOEXPERIMENT=nogreenteagc

# For search only scenarios
# GOMEMLIMIT=800MiB

SEQDB_STORAGE_FRAC_SIZE=16MiB
SEQDB_STORAGE_TOTAL_SIZE=10GiB
Expand Down
5 changes: 4 additions & 1 deletion build/package/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@ COPY . .
ARG VERSION
ARG BUILD_TIME

ARG GOEXPERIMENT
ARG CGO_ENABLED=1

RUN CGO_ENABLED=${CGO_ENABLED} go build -trimpath \
RUN GOEXPERIMENT=${GOEXPERIMENT} \
CGO_ENABLED=${CGO_ENABLED} \
go build -trimpath \
-tags 'netgo osusergo' \
-ldflags "-w -s \
-X github.com/ozontech/seq-db/buildinfo.Version=${VERSION} \
Expand Down
Loading