aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-04-11 07:25:53 +0800
committerFelix Lange <fjl@users.noreply.github.com>2017-04-11 07:25:53 +0800
commit706a1e552c96bf75c60844c1dc28fc83778795fc (patch)
treebabbc6193bbdbde23f063a26544c630434047793 /build
parent18bbe124259a852b349e8238ffe394639e29d803 (diff)
downloadgo-tangerine-706a1e552c96bf75c60844c1dc28fc83778795fc.tar
go-tangerine-706a1e552c96bf75c60844c1dc28fc83778795fc.tar.gz
go-tangerine-706a1e552c96bf75c60844c1dc28fc83778795fc.tar.bz2
go-tangerine-706a1e552c96bf75c60844c1dc28fc83778795fc.tar.lz
go-tangerine-706a1e552c96bf75c60844c1dc28fc83778795fc.tar.xz
go-tangerine-706a1e552c96bf75c60844c1dc28fc83778795fc.tar.zst
go-tangerine-706a1e552c96bf75c60844c1dc28fc83778795fc.zip
cmd/puppeth: your Ethereum private network manager (#13854)
Diffstat (limited to 'build')
-rw-r--r--build/ci.go27
1 files changed, 16 insertions, 11 deletions
diff --git a/build/ci.go b/build/ci.go
index cb89e914b..393937c8f 100644
--- a/build/ci.go
+++ b/build/ci.go
@@ -74,35 +74,40 @@ var (
executablePath("bootnode"),
executablePath("evm"),
executablePath("geth"),
- executablePath("swarm"),
+ executablePath("puppeth"),
executablePath("rlpdump"),
+ executablePath("swarm"),
}
// A debian package is created for all executables listed here.
debExecutables = []debExecutable{
{
- Name: "geth",
- Description: "Ethereum CLI client.",
+ Name: "abigen",
+ Description: "Source code generator to convert Ethereum contract definitions into easy to use, compile-time type-safe Go packages.",
},
{
Name: "bootnode",
Description: "Ethereum bootnode.",
},
{
- Name: "rlpdump",
- Description: "Developer utility tool that prints RLP structures.",
- },
- {
Name: "evm",
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: "swarm",
- Description: "Ethereum Swarm daemon and tools",
+ Name: "geth",
+ Description: "Ethereum CLI client.",
},
{
- Name: "abigen",
- Description: "Source code generator to convert Ethereum contract definitions into easy to use, compile-time type-safe Go packages.",
+ Name: "puppeth",
+ Description: "Ethereum private network manager.",
+ },
+ {
+ Name: "rlpdump",
+ Description: "Developer utility tool that prints RLP structures.",
+ },
+ {
+ Name: "swarm",
+ Description: "Ethereum Swarm daemon and tools",
},
}