File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed
Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 3737 - name : Install deps
3838 run : |
3939 task deps
40+ task deps:tools
4041
4142 - name : Import gnupg
4243 run : |
Original file line number Diff line number Diff line change @@ -21,20 +21,17 @@ tasks:
2121 deps :
2222 desc : Install all build dependencies
2323 cmds :
24- - task : deps:tools
2524 - task : deps:be
2625 - task : deps:fe
2726
2827 deps:tools :
2928 desc : Installs required tools to build and publish
3029 vars :
31- SWAGGER_VERSION : v0.30.5
3230 GORELEASER_VERSION : v1.25.1
33- GOLINTER_VERSION : v1.57.2
3431 cmds :
35- # - go install github.com/go-swagger/go-swagger/cmd/swagger@ {{ .SWAGGER_VERSION }}
36- - go install github.com/goreleaser/goreleaser@{{ .GORELEASER_VERSION }}
37- # - go install github.com/golangci/golangci-lint/cmd/golangci-lint@{{ .GOLINTER_VERSION }}
32+ - wget https:// github.com/goreleaser/goreleaser/releases/download/ {{ .GORELEASER_VERSION }}/goreleaser_Linux_x86_64.tar.gz
33+ - tar xf goreleaser_Linux_x86_64.tar.gz
34+ - mv goreleaser /usr/local/bin/
3835 dir : /tmp
3936
4037 deps:be :
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ RUN --mount=type=cache,target=/go/pkg \
1414 go mod download -x
1515
1616RUN --mount=type=cache,target=/go/pkg --mount=type=cache,target=/root/.cache/go-build \
17- task deps:tools && \
1817 task deps:be && \
1918 task dredd:goodman && \
2019 task dredd:hooks
You can’t perform that action at this time.
0 commit comments