mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
style fixes from @xla
This commit is contained in:
parent
c19bbb2403
commit
2ae87eee4e
@ -43,9 +43,9 @@ software.
|
|||||||
|
|
||||||
Since some dependencies are not under our control, a third party may break our
|
Since some dependencies are not under our control, a third party may break our
|
||||||
build, in which case we can fall back on `dep ensure` (or `make
|
build, in which case we can fall back on `dep ensure` (or `make
|
||||||
get_vendor_deps`). Even for dependencies under our control, dep helps us keeps
|
get_vendor_deps`). Even for dependencies under our control, dep helps us to
|
||||||
multiple repos in sync as they evolve. Anything with an executable, such as
|
keep multiple repos in sync as they evolve. Anything with an executable, such
|
||||||
apps, tools, and the core, should use dep.
|
as apps, tools, and the core, should use dep.
|
||||||
|
|
||||||
Run `dep status` to get a list of vendored dependencies that may not be
|
Run `dep status` to get a list of vendored dependencies that may not be
|
||||||
up-to-date.
|
up-to-date.
|
||||||
@ -66,7 +66,7 @@ make test
|
|||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|
||||||
All repos should be hooked up to circle.
|
All repos should be hooked up to [CircleCI](https://circleci.com/).
|
||||||
|
|
||||||
If they have `.go` files in the root directory, they will be automatically
|
If they have `.go` files in the root directory, they will be automatically
|
||||||
tested by circle using `go test -v -race ./...`. If not, they will need a
|
tested by circle using `go test -v -race ./...`. If not, they will need a
|
||||||
|
@ -2,10 +2,11 @@
|
|||||||
|
|
||||||
set +u
|
set +u
|
||||||
if [[ "$DEP" == "" ]]; then
|
if [[ "$DEP" == "" ]]; then
|
||||||
DEP=$GOPATH/src/github.com/tendermint/tendermint/Gopkg.lock
|
DEP=$GOPATH/src/github.com/tendermint/tendermint/Gopkg.lock
|
||||||
fi
|
fi
|
||||||
set -u
|
set -u
|
||||||
|
|
||||||
|
|
||||||
set -u
|
set -u
|
||||||
|
|
||||||
function getVendoredVersion() {
|
function getVendoredVersion() {
|
||||||
|
@ -2,10 +2,11 @@
|
|||||||
|
|
||||||
set +u
|
set +u
|
||||||
if [[ "$DEP" == "" ]]; then
|
if [[ "$DEP" == "" ]]; then
|
||||||
DEP=$GOPATH/src/github.com/tendermint/tendermint/Gopkg.lock
|
DEP=$GOPATH/src/github.com/tendermint/tendermint/Gopkg.lock
|
||||||
fi
|
fi
|
||||||
set -u
|
set -u
|
||||||
|
|
||||||
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
LIB=$1
|
LIB=$1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user