build: use single CocoaPods package, pre-release dev builds
This commit is contained in:
parent
665bb43a4c
commit
f81660b6db
12
build/ci.go
12
build/ci.go
@ -826,13 +826,12 @@ func doXCodeFramework(cmdline []string) {
|
|||||||
// Prepare and upload a PodSpec to CocoaPods
|
// Prepare and upload a PodSpec to CocoaPods
|
||||||
if *deploy != "" {
|
if *deploy != "" {
|
||||||
meta := newPodMetadata(env, archive)
|
meta := newPodMetadata(env, archive)
|
||||||
build.Render("build/pod.podspec", meta.Name+".podspec", 0755, meta)
|
build.Render("build/pod.podspec", "Geth.podspec", 0755, meta)
|
||||||
build.MustRunCommand("pod", *deploy, "push", meta.Name+".podspec", "--allow-warnings", "--verbose")
|
build.MustRunCommand("pod", *deploy, "push", "Geth.podspec", "--allow-warnings", "--verbose")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type podMetadata struct {
|
type podMetadata struct {
|
||||||
Name string
|
|
||||||
Version string
|
Version string
|
||||||
Commit string
|
Commit string
|
||||||
Archive string
|
Archive string
|
||||||
@ -865,14 +864,13 @@ func newPodMetadata(env build.Environment, archive string) podMetadata {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
name := "Geth"
|
version := build.VERSION()
|
||||||
if isUnstableBuild(env) {
|
if isUnstableBuild(env) {
|
||||||
name += "Develop"
|
version += "-unstable." + env.Buildnum
|
||||||
}
|
}
|
||||||
return podMetadata{
|
return podMetadata{
|
||||||
Name: name,
|
|
||||||
Archive: archive,
|
Archive: archive,
|
||||||
Version: build.VERSION(),
|
Version: version,
|
||||||
Commit: env.Commit,
|
Commit: env.Commit,
|
||||||
Contributors: contribs,
|
Contributors: contribs,
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Pod::Spec.new do |spec|
|
Pod::Spec.new do |spec|
|
||||||
spec.name = '{{.Name}}'
|
spec.name = 'Geth'
|
||||||
spec.version = '{{.Version}}'
|
spec.version = '{{.Version}}'
|
||||||
spec.license = { :type => 'GNU Lesser General Public License, Version 3.0' }
|
spec.license = { :type => 'GNU Lesser General Public License, Version 3.0' }
|
||||||
spec.homepage = 'https://github.com/ethereum/go-ethereum'
|
spec.homepage = 'https://github.com/ethereum/go-ethereum'
|
||||||
|
Loading…
Reference in New Issue
Block a user