aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorViktor TrĂ³n <viktor.tron@gmail.com>2016-11-28 18:25:19 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2016-11-28 18:25:19 +0800
commite4bf004560acf18919d5a1b952eeda521ae07aab (patch)
treed26defcbec361ad618d224d966ae0abdf00e9fb7
parent801a13f7915840c3a74e3bcfd51cc83f00f4899c (diff)
downloadgo-tangerine-e4bf004560acf18919d5a1b952eeda521ae07aab.tar
go-tangerine-e4bf004560acf18919d5a1b952eeda521ae07aab.tar.gz
go-tangerine-e4bf004560acf18919d5a1b952eeda521ae07aab.tar.bz2
go-tangerine-e4bf004560acf18919d5a1b952eeda521ae07aab.tar.lz
go-tangerine-e4bf004560acf18919d5a1b952eeda521ae07aab.tar.xz
go-tangerine-e4bf004560acf18919d5a1b952eeda521ae07aab.tar.zst
go-tangerine-e4bf004560acf18919d5a1b952eeda521ae07aab.zip
build/ci: add swarm related executables (bzzd, bzzup, bzzhash) to binary packages (#3354)
-rw-r--r--build/ci.go15
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.",
},