forked from TrueCloudLab/frostfs-http-gw
[#209] Add check dirty version to CI
Signed-off-by: Denis Kirillov <denis@nspcc.ru>
This commit is contained in:
parent
b567a08a85
commit
6190e2bd72
2 changed files with 4 additions and 1 deletions
3
.github/workflows/builds.yml
vendored
3
.github/workflows/builds.yml
vendored
|
@ -35,6 +35,9 @@ jobs:
|
||||||
- name: Build CLI
|
- name: Build CLI
|
||||||
run: make
|
run: make
|
||||||
|
|
||||||
|
- name: Check version
|
||||||
|
run: if [[ $(make version) == *"dirty"* ]]; then exit 1; fi
|
||||||
|
|
||||||
build_image:
|
build_image:
|
||||||
needs: build_cli
|
needs: build_cli
|
||||||
name: Build Docker image
|
name: Build Docker image
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -13,6 +13,7 @@ require (
|
||||||
github.com/stretchr/testify v1.7.0
|
github.com/stretchr/testify v1.7.0
|
||||||
github.com/testcontainers/testcontainers-go v0.13.0
|
github.com/testcontainers/testcontainers-go v0.13.0
|
||||||
github.com/valyala/fasthttp v1.34.0
|
github.com/valyala/fasthttp v1.34.0
|
||||||
|
go.uber.org/atomic v1.9.0
|
||||||
go.uber.org/zap v1.18.1
|
go.uber.org/zap v1.18.1
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -81,7 +82,6 @@ require (
|
||||||
github.com/urfave/cli v1.22.5 // indirect
|
github.com/urfave/cli v1.22.5 // indirect
|
||||||
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
||||||
go.opencensus.io v0.23.0 // indirect
|
go.opencensus.io v0.23.0 // indirect
|
||||||
go.uber.org/atomic v1.9.0 // indirect
|
|
||||||
go.uber.org/multierr v1.7.0 // indirect
|
go.uber.org/multierr v1.7.0 // indirect
|
||||||
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
|
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
|
||||||
golang.org/x/net v0.0.0-20220412020605-290c469a71a5 // indirect
|
golang.org/x/net v0.0.0-20220412020605-290c469a71a5 // indirect
|
||||||
|
|
Loading…
Reference in a new issue