-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding getting version from debug.ReadBuildInfo (#158)
* adding getting version from debug.ReadBuildInfo in case when it was not injected on build time and adding to docs info on installation with go install, resolves #157 * bump go to 1.17 in tests and tidy go.mod
- Loading branch information
1 parent
e9181fc
commit 304c33f
Showing
6 changed files
with
26 additions
and
23 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
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,4 +1,4 @@ | ||
FROM golang:1.15 | ||
RUN go get github.com/google/ko/cmd/ko | ||
FROM golang:1.17 | ||
RUN go install github.com/google/ko@latest | ||
WORKDIR /go/github.com/tilt-dev/ctlptl/test/cluster-network | ||
ADD . . |
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,4 +1,4 @@ | ||
FROM golang:1.15 | ||
RUN go get github.com/google/ko/cmd/ko | ||
FROM golang:1.17 | ||
RUN go install github.com/google/ko@latest | ||
WORKDIR /go/github.com/tilt-dev/ctlptl/test/cluster-network | ||
ADD . . |