-
Notifications
You must be signed in to change notification settings - Fork 460
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [GO] update to go1.22 * update buildkite pipelines * Update golang version in Dockerfile * Update all buildkite pipelines to use go1.22.x * Update go version in Dockerfile * Cleanup envvar setting in buildkite pipelines * Update golangci-lint to go1.22 * update golangci-lint * update golangci-lint * gosimple lint fixes * fix staticcheck printf style statement * fix lint * run gci to fix lint for import order * fix gofmt lint * exclude comments from lll linter * fix lll lint * remove redundant lll section from golangci-lint * fix goconst lint * fix goconst lint * fix goconst lint
- Loading branch information
Showing
1,164 changed files
with
3,901 additions
and
3,669 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
FROM golang:1.18-bullseye | ||
FROM golang:1.22-bullseye | ||
|
||
RUN apt-get update && apt-get install -y lsof netcat-openbsd docker.io jq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# stage 1: build | ||
FROM golang:1.18-alpine3.15 AS builder | ||
FROM golang:1.22-alpine3.20 AS builder | ||
LABEL maintainer="The M3DB Authors <[email protected]>" | ||
|
||
# Install deps | ||
|
@@ -15,7 +15,7 @@ RUN cd /go/src/github.com/m3db/m3/ && \ | |
make m3aggregator-linux-amd64 | ||
|
||
# stage 2: lightweight "release" | ||
FROM alpine:3.15 | ||
FROM alpine:3.20 | ||
LABEL maintainer="The M3DB Authors <[email protected]>" | ||
|
||
EXPOSE 5000/tcp 6000/tcp 6001/tcp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# stage 1: build | ||
FROM golang:1.18-alpine3.15 AS builder | ||
FROM golang:1.22-alpine3.20 AS builder | ||
LABEL maintainer="The M3DB Authors <[email protected]>" | ||
|
||
# Install deps | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# stage 1: build | ||
FROM golang:1.18-alpine3.15 AS builder | ||
FROM golang:1.22-alpine3.20 AS builder | ||
LABEL maintainer="The M3DB Authors <[email protected]>" | ||
|
||
# Install deps | ||
|
@@ -15,7 +15,7 @@ RUN cd /go/src/github.com/m3db/m3/ && \ | |
make m3dbnode-linux-amd64 | ||
|
||
# Stage 2: lightweight "release" | ||
FROM alpine:3.15 | ||
FROM alpine:3.20 | ||
LABEL maintainer="The M3DB Authors <[email protected]>" | ||
|
||
ENV GODEBUG madvdontneed=1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# stage 1: build | ||
FROM golang:1.18-alpine3.15 AS builder | ||
FROM golang:1.22-alpine3.20 AS builder | ||
LABEL maintainer="The M3DB Authors <[email protected]>" | ||
|
||
# Install deps | ||
|
@@ -15,7 +15,7 @@ RUN cd /go/src/github.com/m3db/m3/ && \ | |
make m3dbnode-linux-amd64 | ||
|
||
# Stage 2: lightweight "release" | ||
FROM alpine:3.15 | ||
FROM alpine:3.20 | ||
LABEL maintainer="The M3DB Authors <[email protected]>" | ||
|
||
ENV GODEBUG madvdontneed=1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# stage 1: build | ||
FROM golang:1.18-alpine3.15 AS builder | ||
FROM golang:1.22-alpine3.20 AS builder | ||
LABEL maintainer="The M3DB Authors <[email protected]>" | ||
|
||
# Install deps | ||
|
@@ -15,7 +15,7 @@ RUN cd /go/src/github.com/m3db/m3/ && \ | |
make m3query-linux-amd64 | ||
|
||
# stage 2: lightweight "release" | ||
FROM alpine:3.15 | ||
FROM alpine:3.20 | ||
LABEL maintainer="The M3DB Authors <[email protected]>" | ||
|
||
EXPOSE 7201/tcp 7203/tcp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.