travis: dash of black magic to summon the cache daemon (#3288)

This commit is contained in:
Péter Szilágyi
2016-11-17 17:15:17 +02:00
committed by Jeffrey Wilcke
parent 87b8254da1
commit f3228592f5
2 changed files with 9 additions and 11 deletions

View File

@ -777,7 +777,6 @@ func doXCodeFramework(cmdline []string) {
// Build the iOS XCode framework
build.MustRun(goTool("get", "golang.org/x/mobile/cmd/gomobile"))
build.MustRun(gomobileTool("init"))
archive := "geth-" + archiveBasename("ios", env)
if err := os.Mkdir(archive, os.ModePerm); err != nil {
@ -799,7 +798,7 @@ func doXCodeFramework(cmdline []string) {
if *deploy != "" {
meta := newPodMetadata(env)
build.Render("build/pod.podspec", meta.Name+".podspec", 0755, meta)
build.MustRunCommand("pod", *deploy, "push", meta.Name+".podspec", "--allow-warnings")
build.MustRunCommand("pod", *deploy, "push", meta.Name+".podspec", "--allow-warnings", "--verbose")
}
}