File tree 2 files changed +4
-7
lines changed
2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 13
13
- name : cache
14
14
path : /go/pkg
15
15
commands :
16
- - go mod download
17
- # Fail if git state is dirty after download modules
18
- # - git diff --quiet
19
16
- make test
20
17
- make build
21
18
Original file line number Diff line number Diff line change 9
9
go test -v ./...
10
10
11
11
dockerbuild :
12
- docker run --rm -it -v ` pwd` :/workspace -w /workspace golang:1.12 go build -v
12
+ docker run --rm -it -v ` pwd` :/workspace -w /workspace golang:1.13 go build -v
13
13
14
14
dockertest :
15
- docker run --rm -it -v ` pwd` :/workspace -w /workspace golang:1.12 go test -v ./...
15
+ docker run --rm -it -v ` pwd` :/workspace -w /workspace golang:1.13 go test -v ./...
16
16
17
17
release :
18
- docker run --rm -it -v ` pwd` :/workspace -w /workspace -e GITHUB_TOKEN golang:1.12 /workspace/scripts/release.sh
18
+ docker run --rm -it -v ` pwd` :/workspace -w /workspace -e GITHUB_TOKEN golang:1.13 /workspace/scripts/release.sh
19
19
20
20
snapshot :
21
- docker run --rm -it -v ` pwd` :/workspace -w /workspace -e GITHUB_TOKEN golang:1.12 /workspace/scripts/release.sh --snapshot
21
+ docker run --rm -it -v ` pwd` :/workspace -w /workspace -e GITHUB_TOKEN golang:1.13 /workspace/scripts/release.sh --snapshot
22
22
23
23
.PHONY : build test changelog targets $(TARGETS )
You can’t perform that action at this time.
0 commit comments