cosmos-sdk/scripts
Alessio Treglia 6c1c2cce04
Makefile: simplify and clean-up (#7453)
The simd target is removed in favor of build/install targets:

- build runs go build ./... with all appropriate flags and args.
- install runs go install ./... with all approriate flags and args.

localnet-start now depends on build-linux [1].

[1] This should hopefully put a smile on @alexanderbez's face!

Remove unused install scripts and snapcraft build files.
2020-10-05 10:22:18 +02:00
..
README.md Merge PR #2930: Simulation spring cleaning 2018-11-29 16:17:10 +01:00
linkify_changelog.py Merge PR #4902: Changelog Flow Updates 2019-08-13 16:00:28 -04:00
protoc-swagger-gen.sh Fix sawgger gen output dir (#7374) 2020-09-23 14:16:47 +00:00
protocgen-any.sh Merge PR #6076: Proto Any init + evidence 2020-05-05 10:28:20 -04:00
protocgen.sh Add swagger for gRPC REST (#7075) 2020-08-28 18:49:08 +00:00

README.md

Generally we should avoid shell scripting and write tests purely in Golang. However, some libraries are not Goroutine-safe (e.g. app simulations cannot be run safely in parallel), and OS-native threading may be more efficient for many parallel simulations, so we use shell scripts here.