diff options
author | Viktor TrĂ³n <viktor.tron@gmail.com> | 2016-11-28 18:25:19 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-11-28 18:25:19 +0800 |
commit | e4bf004560acf18919d5a1b952eeda521ae07aab (patch) | |
tree | d26defcbec361ad618d224d966ae0abdf00e9fb7 /build | |
parent | 801a13f7915840c3a74e3bcfd51cc83f00f4899c (diff) | |
download | dexon-e4bf004560acf18919d5a1b952eeda521ae07aab.tar.gz dexon-e4bf004560acf18919d5a1b952eeda521ae07aab.tar.zst dexon-e4bf004560acf18919d5a1b952eeda521ae07aab.zip |
build/ci: add swarm related executables (bzzd, bzzup, bzzhash) to binary packages (#3354)
Diffstat (limited to 'build')
-rw-r--r-- | build/ci.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/build/ci.go b/build/ci.go index 61e8614ed..29c4b8b33 100644 --- a/build/ci.go +++ b/build/ci.go @@ -72,6 +72,9 @@ var ( executablePath("abigen"), executablePath("evm"), executablePath("geth"), + executablePath("bzzd"), + executablePath("bzzhash"), + executablePath("bzzup"), executablePath("rlpdump"), } @@ -90,6 +93,18 @@ var ( Description: "Developer utility version of the EVM (Ethereum Virtual Machine) that is capable of running bytecode snippets within a configurable environment and execution mode.", }, { + Name: "bzzd", + Description: "Ethereum Swarm daemon", + }, + { + Name: "bzzup", + Description: "Ethereum Swarm command line file/directory uploader", + }, + { + Name: "bzzhash", + Description: "Ethereum Swarm file/directory hash calculator", + }, + { Name: "abigen", Description: "Source code generator to convert Ethereum contract definitions into easy to use, compile-time type-safe Go packages.", }, |