aboutsummaryrefslogtreecommitdiffstats
path: root/build/ci.go
diff options
context:
space:
mode:
Diffstat (limited to 'build/ci.go')
-rw-r--r--build/ci.go27
1 files changed, 20 insertions, 7 deletions
diff --git a/build/ci.go b/build/ci.go
index 61e8614ed..c202480b2 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.",
},
@@ -811,13 +826,12 @@ func doXCodeFramework(cmdline []string) {
// Prepare and upload a PodSpec to CocoaPods
if *deploy != "" {
meta := newPodMetadata(env, archive)
- build.Render("build/pod.podspec", meta.Name+".podspec", 0755, meta)
- build.MustRunCommand("pod", *deploy, "push", meta.Name+".podspec", "--allow-warnings", "--verbose")
+ build.Render("build/pod.podspec", "Geth.podspec", 0755, meta)
+ build.MustRunCommand("pod", *deploy, "push", "Geth.podspec", "--allow-warnings", "--verbose")
}
}
type podMetadata struct {
- Name string
Version string
Commit string
Archive string
@@ -850,14 +864,13 @@ func newPodMetadata(env build.Environment, archive string) podMetadata {
}
}
}
- name := "Geth"
+ version := build.VERSION()
if isUnstableBuild(env) {
- name += "Develop"
+ version += "-unstable." + env.Buildnum
}
return podMetadata{
- Name: name,
Archive: archive,
- Version: build.VERSION(),
+ Version: version,
Commit: env.Commit,
Contributors: contribs,
}