File tree Expand file tree Collapse file tree 6 files changed +7
-11
lines changed
Expand file tree Collapse file tree 6 files changed +7
-11
lines changed Original file line number Diff line number Diff line change 88 test :
99 strategy :
1010 matrix :
11- go-version : [1.14 .x]
11+ go-version : [1.16 .x]
1212 os : [ubuntu-latest]
1313 runs-on : ${{ matrix.os }}
1414 steps :
3434 with :
3535 # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
3636 version : v1.40.1
37-
3837 # Optional: working directory, useful for monorepos
3938 # working-directory: somedir
40-
4139 # Optional: golangci-lint command line arguments.
4240 # args: --new-from-rev=f7cdb31b6a6c8
43-
4441 # Optional: show only new issues if it's a pull request. The default value is `false`.
4542 # only-new-issues: true
Original file line number Diff line number Diff line change 88GO ?= go
99VERSION ?= $(shell git rev-parse --short HEAD)
1010
11- # Binaries
1211PKG_CARBONAPI =github.com/bookingcom/carbonapi/cmd/carbonapi
1312PKG_CARBONZIPPER =github.com/bookingcom/carbonapi/cmd/carbonzipper
1413
15- # Flags
1614GCFLAGS :=
1715debug : GCFLAGS += -gcflags=all='-l -N'
1816
@@ -21,7 +19,8 @@ LDFLAGS = -ldflags '-X main.BuildVersion=$(VERSION)'
2119TAGS := -tags cairo
2220nocairo : TAGS =
2321
24- # Targets
22+ # ## Targets ###
23+
2524all : build
2625
2726nocairo : build
Original file line number Diff line number Diff line change 1- FROM golang:1.14
1+ FROM golang:1.16
22
33RUN apt-get update
44RUN apt-get install -y libcairo2-dev
Original file line number Diff line number Diff line change 1- FROM golang:1.14
1+ FROM golang:1.16
22
33RUN go get github.com/bookingcom/nanotube/cmd/nanotube
44RUN go install github.com/bookingcom/nanotube/cmd/nanotube
Original file line number Diff line number Diff line change 1- FROM golang:1.14
1+ FROM golang:1.16
22
33RUN apt-get update
44RUN apt-get install -y libcairo2-dev
Original file line number Diff line number Diff line change 11module github.com/bookingcom/carbonapi
22
3- go 1.14
3+ go 1.16
44
55require (
66 bitbucket.org/tebeka/strftime v0.0.0-20121209190902-af5e0ef38369
You can’t perform that action at this time.
0 commit comments