| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132 |
- // Copyright 2016 The go-ethereum Authors
- // This file is part of the go-ethereum library.
- //
- // The go-ethereum library is free software: you can redistribute it and/or modify
- // it under the terms of the GNU Lesser General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // The go-ethereum library is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU Lesser General Public License for more details.
- //
- // You should have received a copy of the GNU Lesser General Public License
- // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
- // +build none
- /*
- The ci command is called from Continuous Integration scripts.
- Usage: go run build/ci.go <command> <command flags/arguments>
- Available commands are:
- install [ -arch architecture ] [ -cc compiler ] [ packages... ] -- builds packages and executables
- test [ -coverage ] [ packages... ] -- runs the tests
- lint -- runs certain pre-selected linters
- archive [ -arch architecture ] [ -type zip|tar ] [ -signer key-envvar ] [ -signify key-envvar ] [ -upload dest ] -- archives build artifacts
- importkeys -- imports signing keys from env
- debsrc [ -signer key-id ] [ -upload dest ] -- creates a debian source package
- nsis -- creates a Windows NSIS installer
- aar [ -local ] [ -sign key-id ] [-deploy repo] [ -upload dest ] -- creates an Android archive
- xcode [ -local ] [ -sign key-id ] [-deploy repo] [ -upload dest ] -- creates an iOS XCode framework
- xgo [ -alltools ] [ options ] -- cross builds according to options
- purge [ -store blobstore ] [ -days threshold ] -- purges old archives from the blobstore
- For all commands, -n prevents execution of external programs (dry run mode).
- */
- package main
- import (
- "bufio"
- "bytes"
- "encoding/base64"
- "flag"
- "fmt"
- "io/ioutil"
- "log"
- "os"
- "os/exec"
- "path"
- "path/filepath"
- "regexp"
- "runtime"
- "strings"
- "time"
- "github.com/cespare/cp"
- "github.com/ethereum/go-ethereum/crypto/signify"
- "github.com/ethereum/go-ethereum/internal/build"
- "github.com/ethereum/go-ethereum/params"
- )
- var (
- // Files that end up in the geth*.zip archive.
- gethArchiveFiles = []string{
- "COPYING",
- executablePath("geth"),
- }
- // Files that end up in the geth-alltools*.zip archive.
- allToolsArchiveFiles = []string{
- "COPYING",
- executablePath("abigen"),
- executablePath("bootnode"),
- executablePath("evm"),
- executablePath("geth"),
- executablePath("puppeth"),
- executablePath("rlpdump"),
- executablePath("clef"),
- }
- // A debian package is created for all executables listed here.
- debExecutables = []debExecutable{
- {
- BinaryName: "abigen",
- Description: "Source code generator to convert Ethereum contract definitions into easy to use, compile-time type-safe Go packages.",
- },
- {
- BinaryName: "bootnode",
- Description: "Ethereum bootnode.",
- },
- {
- BinaryName: "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.",
- },
- {
- BinaryName: "geth",
- Description: "Ethereum CLI client.",
- },
- {
- BinaryName: "puppeth",
- Description: "Ethereum private network manager.",
- },
- {
- BinaryName: "rlpdump",
- Description: "Developer utility tool that prints RLP structures.",
- },
- {
- BinaryName: "clef",
- Description: "Ethereum account management tool.",
- },
- }
- // A debian package is created for all executables listed here.
- debEthereum = debPackage{
- Name: "ethereum",
- Version: params.Version,
- Executables: debExecutables,
- }
- // Debian meta packages to build and push to Ubuntu PPA
- debPackages = []debPackage{
- debEthereum,
- }
- // Distros for which packages are created.
- // Note: vivid is unsupported because there is no golang-1.6 package for it.
- // Note: wily is unsupported because it was officially deprecated on Launchpad.
- // Note: yakkety is unsupported because it was officially deprecated on Launchpad.
- // Note: zesty is unsupported because it was officially deprecated on Launchpad.
- // Note: artful is unsupported because it was officially deprecated on Launchpad.
- // Note: cosmic is unsupported because it was officially deprecated on Launchpad.
- // Note: disco is unsupported because it was officially deprecated on Launchpad.
- // Note: eoan is unsupported because it was officially deprecated on Launchpad.
- debDistroGoBoots = map[string]string{
- "trusty": "golang-1.11",
- "xenial": "golang-go",
- "bionic": "golang-go",
- "focal": "golang-go",
- "groovy": "golang-go",
- "hirsute": "golang-go",
- }
- debGoBootPaths = map[string]string{
- "golang-1.11": "/usr/lib/go-1.11",
- "golang-go": "/usr/lib/go",
- }
- // This is the version of go that will be downloaded by
- //
- // go run ci.go install -dlgo
- dlgoVersion = "1.16.3"
- )
- var GOBIN, _ = filepath.Abs(filepath.Join("build", "bin"))
- func executablePath(name string) string {
- if runtime.GOOS == "windows" {
- name += ".exe"
- }
- return filepath.Join(GOBIN, name)
- }
- func main() {
- log.SetFlags(log.Lshortfile)
- if _, err := os.Stat(filepath.Join("build", "ci.go")); os.IsNotExist(err) {
- log.Fatal("this script must be run from the root of the repository")
- }
- if len(os.Args) < 2 {
- log.Fatal("need subcommand as first argument")
- }
- switch os.Args[1] {
- case "install":
- doInstall(os.Args[2:])
- case "test":
- doTest(os.Args[2:])
- case "lint":
- doLint(os.Args[2:])
- case "archive":
- doArchive(os.Args[2:])
- case "debsrc":
- doDebianSource(os.Args[2:])
- case "nsis":
- doWindowsInstaller(os.Args[2:])
- case "aar":
- doAndroidArchive(os.Args[2:])
- case "xcode":
- doXCodeFramework(os.Args[2:])
- case "xgo":
- doXgo(os.Args[2:])
- case "purge":
- doPurge(os.Args[2:])
- default:
- log.Fatal("unknown command ", os.Args[1])
- }
- }
- // Compiling
- func doInstall(cmdline []string) {
- var (
- dlgo = flag.Bool("dlgo", false, "Download Go and build with it")
- arch = flag.String("arch", "", "Architecture to cross build for")
- cc = flag.String("cc", "", "C compiler to cross build with")
- )
- flag.CommandLine.Parse(cmdline)
- // Configure the toolchain.
- tc := build.GoToolchain{GOARCH: *arch, CC: *cc}
- if *dlgo {
- csdb := build.MustLoadChecksums("build/checksums.txt")
- tc.Root = build.DownloadGo(csdb, dlgoVersion)
- }
- // Configure the build.
- env := build.Env()
- gobuild := tc.Go("build", buildFlags(env)...)
- // arm64 CI builders are memory-constrained and can't handle concurrent builds,
- // better disable it. This check isn't the best, it should probably
- // check for something in env instead.
- if env.CI && runtime.GOARCH == "arm64" {
- gobuild.Args = append(gobuild.Args, "-p", "1")
- }
- // We use -trimpath to avoid leaking local paths into the built executables.
- gobuild.Args = append(gobuild.Args, "-trimpath")
- // Show packages during build.
- gobuild.Args = append(gobuild.Args, "-v")
- // Now we choose what we're even building.
- // Default: collect all 'main' packages in cmd/ and build those.
- packages := flag.Args()
- if len(packages) == 0 {
- packages = build.FindMainPackages("./cmd")
- }
- // Do the build!
- for _, pkg := range packages {
- args := make([]string, len(gobuild.Args))
- copy(args, gobuild.Args)
- args = append(args, "-o", executablePath(path.Base(pkg)))
- args = append(args, pkg)
- build.MustRun(&exec.Cmd{Path: gobuild.Path, Args: args, Env: gobuild.Env})
- }
- }
- // buildFlags returns the go tool flags for building.
- func buildFlags(env build.Environment) (flags []string) {
- var ld []string
- if env.Commit != "" {
- ld = append(ld, "-X", "main.gitCommit="+env.Commit)
- ld = append(ld, "-X", "main.gitDate="+env.Date)
- }
- // Strip DWARF on darwin. This used to be required for certain things,
- // and there is no downside to this, so we just keep doing it.
- if runtime.GOOS == "darwin" {
- ld = append(ld, "-s")
- }
- if len(ld) > 0 {
- flags = append(flags, "-ldflags", strings.Join(ld, " "))
- }
- return flags
- }
- // Running The Tests
- //
- // "tests" also includes static analysis tools such as vet.
- func doTest(cmdline []string) {
- var (
- dlgo = flag.Bool("dlgo", false, "Download Go and build with it")
- arch = flag.String("arch", "", "Run tests for given architecture")
- cc = flag.String("cc", "", "Sets C compiler binary")
- coverage = flag.Bool("coverage", false, "Whether to record code coverage")
- verbose = flag.Bool("v", false, "Whether to log verbosely")
- )
- flag.CommandLine.Parse(cmdline)
- // Configure the toolchain.
- tc := build.GoToolchain{GOARCH: *arch, CC: *cc}
- if *dlgo {
- csdb := build.MustLoadChecksums("build/checksums.txt")
- tc.Root = build.DownloadGo(csdb, dlgoVersion)
- }
- gotest := tc.Go("test")
- // Test a single package at a time. CI builders are slow
- // and some tests run into timeouts under load.
- gotest.Args = append(gotest.Args, "-p", "1")
- if *coverage {
- gotest.Args = append(gotest.Args, "-covermode=atomic", "-cover")
- }
- if *verbose {
- gotest.Args = append(gotest.Args, "-v")
- }
- packages := []string{"./..."}
- if len(flag.CommandLine.Args()) > 0 {
- packages = flag.CommandLine.Args()
- }
- gotest.Args = append(gotest.Args, packages...)
- build.MustRun(gotest)
- }
- // doLint runs golangci-lint on requested packages.
- func doLint(cmdline []string) {
- var (
- cachedir = flag.String("cachedir", "./build/cache", "directory for caching golangci-lint binary.")
- )
- flag.CommandLine.Parse(cmdline)
- packages := []string{"./..."}
- if len(flag.CommandLine.Args()) > 0 {
- packages = flag.CommandLine.Args()
- }
- linter := downloadLinter(*cachedir)
- lflags := []string{"run", "--config", ".golangci.yml"}
- build.MustRunCommand(linter, append(lflags, packages...)...)
- fmt.Println("You have achieved perfection.")
- }
- // downloadLinter downloads and unpacks golangci-lint.
- func downloadLinter(cachedir string) string {
- const version = "1.39.0"
- csdb := build.MustLoadChecksums("build/checksums.txt")
- base := fmt.Sprintf("golangci-lint-%s-%s-%s", version, runtime.GOOS, runtime.GOARCH)
- url := fmt.Sprintf("https://github.com/golangci/golangci-lint/releases/download/v%s/%s.tar.gz", version, base)
- archivePath := filepath.Join(cachedir, base+".tar.gz")
- if err := csdb.DownloadFile(url, archivePath); err != nil {
- log.Fatal(err)
- }
- if err := build.ExtractArchive(archivePath, cachedir); err != nil {
- log.Fatal(err)
- }
- return filepath.Join(cachedir, base, "golangci-lint")
- }
- // Release Packaging
- func doArchive(cmdline []string) {
- var (
- arch = flag.String("arch", runtime.GOARCH, "Architecture cross packaging")
- atype = flag.String("type", "zip", "Type of archive to write (zip|tar)")
- signer = flag.String("signer", "", `Environment variable holding the signing key (e.g. LINUX_SIGNING_KEY)`)
- signify = flag.String("signify", "", `Environment variable holding the signify key (e.g. LINUX_SIGNIFY_KEY)`)
- upload = flag.String("upload", "", `Destination to upload the archives (usually "gethstore/builds")`)
- ext string
- )
- flag.CommandLine.Parse(cmdline)
- switch *atype {
- case "zip":
- ext = ".zip"
- case "tar":
- ext = ".tar.gz"
- default:
- log.Fatal("unknown archive type: ", atype)
- }
- var (
- env = build.Env()
- basegeth = archiveBasename(*arch, params.ArchiveVersion(env.Commit))
- geth = "geth-" + basegeth + ext
- alltools = "geth-alltools-" + basegeth + ext
- )
- maybeSkipArchive(env)
- if err := build.WriteArchive(geth, gethArchiveFiles); err != nil {
- log.Fatal(err)
- }
- if err := build.WriteArchive(alltools, allToolsArchiveFiles); err != nil {
- log.Fatal(err)
- }
- for _, archive := range []string{geth, alltools} {
- if err := archiveUpload(archive, *upload, *signer, *signify); err != nil {
- log.Fatal(err)
- }
- }
- }
- func archiveBasename(arch string, archiveVersion string) string {
- platform := runtime.GOOS + "-" + arch
- if arch == "arm" {
- platform += os.Getenv("GOARM")
- }
- if arch == "android" {
- platform = "android-all"
- }
- if arch == "ios" {
- platform = "ios-all"
- }
- return platform + "-" + archiveVersion
- }
- func archiveUpload(archive string, blobstore string, signer string, signifyVar string) error {
- // If signing was requested, generate the signature files
- if signer != "" {
- key := getenvBase64(signer)
- if err := build.PGPSignFile(archive, archive+".asc", string(key)); err != nil {
- return err
- }
- }
- if signifyVar != "" {
- key := os.Getenv(signifyVar)
- untrustedComment := "verify with geth-release.pub"
- trustedComment := fmt.Sprintf("%s (%s)", archive, time.Now().UTC().Format(time.RFC1123))
- if err := signify.SignFile(archive, archive+".sig", key, untrustedComment, trustedComment); err != nil {
- return err
- }
- }
- // If uploading to Azure was requested, push the archive possibly with its signature
- if blobstore != "" {
- auth := build.AzureBlobstoreConfig{
- Account: strings.Split(blobstore, "/")[0],
- Token: os.Getenv("AZURE_BLOBSTORE_TOKEN"),
- Container: strings.SplitN(blobstore, "/", 2)[1],
- }
- if err := build.AzureBlobstoreUpload(archive, filepath.Base(archive), auth); err != nil {
- return err
- }
- if signer != "" {
- if err := build.AzureBlobstoreUpload(archive+".asc", filepath.Base(archive+".asc"), auth); err != nil {
- return err
- }
- }
- if signifyVar != "" {
- if err := build.AzureBlobstoreUpload(archive+".sig", filepath.Base(archive+".sig"), auth); err != nil {
- return err
- }
- }
- }
- return nil
- }
- // skips archiving for some build configurations.
- func maybeSkipArchive(env build.Environment) {
- if env.IsPullRequest {
- log.Printf("skipping archive creation because this is a PR build")
- os.Exit(0)
- }
- if env.IsCronJob {
- log.Printf("skipping archive creation because this is a cron job")
- os.Exit(0)
- }
- if env.Branch != "master" && !strings.HasPrefix(env.Tag, "v1.") {
- log.Printf("skipping archive creation because branch %q, tag %q is not on the whitelist", env.Branch, env.Tag)
- os.Exit(0)
- }
- }
- // Debian Packaging
- func doDebianSource(cmdline []string) {
- var (
- cachedir = flag.String("cachedir", "./build/cache", `Filesystem path to cache the downloaded Go bundles at`)
- signer = flag.String("signer", "", `Signing key name, also used as package author`)
- upload = flag.String("upload", "", `Where to upload the source package (usually "ethereum/ethereum")`)
- sshUser = flag.String("sftp-user", "", `Username for SFTP upload (usually "geth-ci")`)
- workdir = flag.String("workdir", "", `Output directory for packages (uses temp dir if unset)`)
- now = time.Now()
- )
- flag.CommandLine.Parse(cmdline)
- *workdir = makeWorkdir(*workdir)
- env := build.Env()
- tc := new(build.GoToolchain)
- maybeSkipArchive(env)
- // Import the signing key.
- if key := getenvBase64("PPA_SIGNING_KEY"); len(key) > 0 {
- gpg := exec.Command("gpg", "--import")
- gpg.Stdin = bytes.NewReader(key)
- build.MustRun(gpg)
- }
- // Download and verify the Go source package.
- gobundle := downloadGoSources(*cachedir)
- // Download all the dependencies needed to build the sources and run the ci script
- srcdepfetch := tc.Go("mod", "download")
- srcdepfetch.Env = append(srcdepfetch.Env, "GOPATH="+filepath.Join(*workdir, "modgopath"))
- build.MustRun(srcdepfetch)
- cidepfetch := tc.Go("run", "./build/ci.go")
- cidepfetch.Env = append(cidepfetch.Env, "GOPATH="+filepath.Join(*workdir, "modgopath"))
- cidepfetch.Run() // Command fails, don't care, we only need the deps to start it
- // Create Debian packages and upload them.
- for _, pkg := range debPackages {
- for distro, goboot := range debDistroGoBoots {
- // Prepare the debian package with the go-ethereum sources.
- meta := newDebMetadata(distro, goboot, *signer, env, now, pkg.Name, pkg.Version, pkg.Executables)
- pkgdir := stageDebianSource(*workdir, meta)
- // Add Go source code
- if err := build.ExtractArchive(gobundle, pkgdir); err != nil {
- log.Fatalf("Failed to extract Go sources: %v", err)
- }
- if err := os.Rename(filepath.Join(pkgdir, "go"), filepath.Join(pkgdir, ".go")); err != nil {
- log.Fatalf("Failed to rename Go source folder: %v", err)
- }
- // Add all dependency modules in compressed form
- os.MkdirAll(filepath.Join(pkgdir, ".mod", "cache"), 0755)
- if err := cp.CopyAll(filepath.Join(pkgdir, ".mod", "cache", "download"), filepath.Join(*workdir, "modgopath", "pkg", "mod", "cache", "download")); err != nil {
- log.Fatalf("Failed to copy Go module dependencies: %v", err)
- }
- // Run the packaging and upload to the PPA
- debuild := exec.Command("debuild", "-S", "-sa", "-us", "-uc", "-d", "-Zxz", "-nc")
- debuild.Dir = pkgdir
- build.MustRun(debuild)
- var (
- basename = fmt.Sprintf("%s_%s", meta.Name(), meta.VersionString())
- source = filepath.Join(*workdir, basename+".tar.xz")
- dsc = filepath.Join(*workdir, basename+".dsc")
- changes = filepath.Join(*workdir, basename+"_source.changes")
- buildinfo = filepath.Join(*workdir, basename+"_source.buildinfo")
- )
- if *signer != "" {
- build.MustRunCommand("debsign", changes)
- }
- if *upload != "" {
- ppaUpload(*workdir, *upload, *sshUser, []string{source, dsc, changes, buildinfo})
- }
- }
- }
- }
- // downloadGoSources downloads the Go source tarball.
- func downloadGoSources(cachedir string) string {
- csdb := build.MustLoadChecksums("build/checksums.txt")
- file := fmt.Sprintf("go%s.src.tar.gz", dlgoVersion)
- url := "https://dl.google.com/go/" + file
- dst := filepath.Join(cachedir, file)
- if err := csdb.DownloadFile(url, dst); err != nil {
- log.Fatal(err)
- }
- return dst
- }
- func ppaUpload(workdir, ppa, sshUser string, files []string) {
- p := strings.Split(ppa, "/")
- if len(p) != 2 {
- log.Fatal("-upload PPA name must contain single /")
- }
- if sshUser == "" {
- sshUser = p[0]
- }
- incomingDir := fmt.Sprintf("~%s/ubuntu/%s", p[0], p[1])
- // Create the SSH identity file if it doesn't exist.
- var idfile string
- if sshkey := getenvBase64("PPA_SSH_KEY"); len(sshkey) > 0 {
- idfile = filepath.Join(workdir, "sshkey")
- if _, err := os.Stat(idfile); os.IsNotExist(err) {
- ioutil.WriteFile(idfile, sshkey, 0600)
- }
- }
- // Upload
- dest := sshUser + "@ppa.launchpad.net"
- if err := build.UploadSFTP(idfile, dest, incomingDir, files); err != nil {
- log.Fatal(err)
- }
- }
- func getenvBase64(variable string) []byte {
- dec, err := base64.StdEncoding.DecodeString(os.Getenv(variable))
- if err != nil {
- log.Fatal("invalid base64 " + variable)
- }
- return []byte(dec)
- }
- func makeWorkdir(wdflag string) string {
- var err error
- if wdflag != "" {
- err = os.MkdirAll(wdflag, 0744)
- } else {
- wdflag, err = ioutil.TempDir("", "geth-build-")
- }
- if err != nil {
- log.Fatal(err)
- }
- return wdflag
- }
- func isUnstableBuild(env build.Environment) bool {
- if env.Tag != "" {
- return false
- }
- return true
- }
- type debPackage struct {
- Name string // the name of the Debian package to produce, e.g. "ethereum"
- Version string // the clean version of the debPackage, e.g. 1.8.12, without any metadata
- Executables []debExecutable // executables to be included in the package
- }
- type debMetadata struct {
- Env build.Environment
- GoBootPackage string
- GoBootPath string
- PackageName string
- // go-ethereum version being built. Note that this
- // is not the debian package version. The package version
- // is constructed by VersionString.
- Version string
- Author string // "name <email>", also selects signing key
- Distro, Time string
- Executables []debExecutable
- }
- type debExecutable struct {
- PackageName string
- BinaryName string
- Description string
- }
- // Package returns the name of the package if present, or
- // fallbacks to BinaryName
- func (d debExecutable) Package() string {
- if d.PackageName != "" {
- return d.PackageName
- }
- return d.BinaryName
- }
- func newDebMetadata(distro, goboot, author string, env build.Environment, t time.Time, name string, version string, exes []debExecutable) debMetadata {
- if author == "" {
- // No signing key, use default author.
- author = "Ethereum Builds <fjl@ethereum.org>"
- }
- return debMetadata{
- GoBootPackage: goboot,
- GoBootPath: debGoBootPaths[goboot],
- PackageName: name,
- Env: env,
- Author: author,
- Distro: distro,
- Version: version,
- Time: t.Format(time.RFC1123Z),
- Executables: exes,
- }
- }
- // Name returns the name of the metapackage that depends
- // on all executable packages.
- func (meta debMetadata) Name() string {
- if isUnstableBuild(meta.Env) {
- return meta.PackageName + "-unstable"
- }
- return meta.PackageName
- }
- // VersionString returns the debian version of the packages.
- func (meta debMetadata) VersionString() string {
- vsn := meta.Version
- if meta.Env.Buildnum != "" {
- vsn += "+build" + meta.Env.Buildnum
- }
- if meta.Distro != "" {
- vsn += "+" + meta.Distro
- }
- return vsn
- }
- // ExeList returns the list of all executable packages.
- func (meta debMetadata) ExeList() string {
- names := make([]string, len(meta.Executables))
- for i, e := range meta.Executables {
- names[i] = meta.ExeName(e)
- }
- return strings.Join(names, ", ")
- }
- // ExeName returns the package name of an executable package.
- func (meta debMetadata) ExeName(exe debExecutable) string {
- if isUnstableBuild(meta.Env) {
- return exe.Package() + "-unstable"
- }
- return exe.Package()
- }
- // ExeConflicts returns the content of the Conflicts field
- // for executable packages.
- func (meta debMetadata) ExeConflicts(exe debExecutable) string {
- if isUnstableBuild(meta.Env) {
- // Set up the conflicts list so that the *-unstable packages
- // cannot be installed alongside the regular version.
- //
- // https://www.debian.org/doc/debian-policy/ch-relationships.html
- // is very explicit about Conflicts: and says that Breaks: should
- // be preferred and the conflicting files should be handled via
- // alternates. We might do this eventually but using a conflict is
- // easier now.
- return "ethereum, " + exe.Package()
- }
- return ""
- }
- func stageDebianSource(tmpdir string, meta debMetadata) (pkgdir string) {
- pkg := meta.Name() + "-" + meta.VersionString()
- pkgdir = filepath.Join(tmpdir, pkg)
- if err := os.Mkdir(pkgdir, 0755); err != nil {
- log.Fatal(err)
- }
- // Copy the source code.
- build.MustRunCommand("git", "checkout-index", "-a", "--prefix", pkgdir+string(filepath.Separator))
- // Put the debian build files in place.
- debian := filepath.Join(pkgdir, "debian")
- build.Render("build/deb/"+meta.PackageName+"/deb.rules", filepath.Join(debian, "rules"), 0755, meta)
- build.Render("build/deb/"+meta.PackageName+"/deb.changelog", filepath.Join(debian, "changelog"), 0644, meta)
- build.Render("build/deb/"+meta.PackageName+"/deb.control", filepath.Join(debian, "control"), 0644, meta)
- build.Render("build/deb/"+meta.PackageName+"/deb.copyright", filepath.Join(debian, "copyright"), 0644, meta)
- build.RenderString("8\n", filepath.Join(debian, "compat"), 0644, meta)
- build.RenderString("3.0 (native)\n", filepath.Join(debian, "source/format"), 0644, meta)
- for _, exe := range meta.Executables {
- install := filepath.Join(debian, meta.ExeName(exe)+".install")
- docs := filepath.Join(debian, meta.ExeName(exe)+".docs")
- build.Render("build/deb/"+meta.PackageName+"/deb.install", install, 0644, exe)
- build.Render("build/deb/"+meta.PackageName+"/deb.docs", docs, 0644, exe)
- }
- return pkgdir
- }
- // Windows installer
- func doWindowsInstaller(cmdline []string) {
- // Parse the flags and make skip installer generation on PRs
- var (
- arch = flag.String("arch", runtime.GOARCH, "Architecture for cross build packaging")
- signer = flag.String("signer", "", `Environment variable holding the signing key (e.g. WINDOWS_SIGNING_KEY)`)
- signify = flag.String("signify key", "", `Environment variable holding the signify signing key (e.g. WINDOWS_SIGNIFY_KEY)`)
- upload = flag.String("upload", "", `Destination to upload the archives (usually "gethstore/builds")`)
- workdir = flag.String("workdir", "", `Output directory for packages (uses temp dir if unset)`)
- )
- flag.CommandLine.Parse(cmdline)
- *workdir = makeWorkdir(*workdir)
- env := build.Env()
- maybeSkipArchive(env)
- // Aggregate binaries that are included in the installer
- var (
- devTools []string
- allTools []string
- gethTool string
- )
- for _, file := range allToolsArchiveFiles {
- if file == "COPYING" { // license, copied later
- continue
- }
- allTools = append(allTools, filepath.Base(file))
- if filepath.Base(file) == "geth.exe" {
- gethTool = file
- } else {
- devTools = append(devTools, file)
- }
- }
- // Render NSIS scripts: Installer NSIS contains two installer sections,
- // first section contains the geth binary, second section holds the dev tools.
- templateData := map[string]interface{}{
- "License": "COPYING",
- "Geth": gethTool,
- "DevTools": devTools,
- }
- build.Render("build/nsis.geth.nsi", filepath.Join(*workdir, "geth.nsi"), 0644, nil)
- build.Render("build/nsis.install.nsh", filepath.Join(*workdir, "install.nsh"), 0644, templateData)
- build.Render("build/nsis.uninstall.nsh", filepath.Join(*workdir, "uninstall.nsh"), 0644, allTools)
- build.Render("build/nsis.pathupdate.nsh", filepath.Join(*workdir, "PathUpdate.nsh"), 0644, nil)
- build.Render("build/nsis.envvarupdate.nsh", filepath.Join(*workdir, "EnvVarUpdate.nsh"), 0644, nil)
- if err := cp.CopyFile(filepath.Join(*workdir, "SimpleFC.dll"), "build/nsis.simplefc.dll"); err != nil {
- log.Fatal("Failed to copy SimpleFC.dll: %v", err)
- }
- if err := cp.CopyFile(filepath.Join(*workdir, "COPYING"), "COPYING"); err != nil {
- log.Fatal("Failed to copy copyright note: %v", err)
- }
- // Build the installer. This assumes that all the needed files have been previously
- // built (don't mix building and packaging to keep cross compilation complexity to a
- // minimum).
- version := strings.Split(params.Version, ".")
- if env.Commit != "" {
- version[2] += "-" + env.Commit[:8]
- }
- installer, _ := filepath.Abs("geth-" + archiveBasename(*arch, params.ArchiveVersion(env.Commit)) + ".exe")
- build.MustRunCommand("makensis.exe",
- "/DOUTPUTFILE="+installer,
- "/DMAJORVERSION="+version[0],
- "/DMINORVERSION="+version[1],
- "/DBUILDVERSION="+version[2],
- "/DARCH="+*arch,
- filepath.Join(*workdir, "geth.nsi"),
- )
- // Sign and publish installer.
- if err := archiveUpload(installer, *upload, *signer, *signify); err != nil {
- log.Fatal(err)
- }
- }
- // Android archives
- func doAndroidArchive(cmdline []string) {
- var (
- local = flag.Bool("local", false, `Flag whether we're only doing a local build (skip Maven artifacts)`)
- signer = flag.String("signer", "", `Environment variable holding the signing key (e.g. ANDROID_SIGNING_KEY)`)
- signify = flag.String("signify", "", `Environment variable holding the signify signing key (e.g. ANDROID_SIGNIFY_KEY)`)
- deploy = flag.String("deploy", "", `Destination to deploy the archive (usually "https://oss.sonatype.org")`)
- upload = flag.String("upload", "", `Destination to upload the archive (usually "gethstore/builds")`)
- )
- flag.CommandLine.Parse(cmdline)
- env := build.Env()
- tc := new(build.GoToolchain)
- // Sanity check that the SDK and NDK are installed and set
- if os.Getenv("ANDROID_HOME") == "" {
- log.Fatal("Please ensure ANDROID_HOME points to your Android SDK")
- }
- // Build gomobile.
- install := tc.Install(GOBIN, "golang.org/x/mobile/cmd/gomobile@latest", "golang.org/x/mobile/cmd/gobind@latest")
- install.Env = append(install.Env)
- build.MustRun(install)
- // Ensure all dependencies are available. This is required to make
- // gomobile bind work because it expects go.sum to contain all checksums.
- build.MustRun(tc.Go("mod", "download"))
- // Build the Android archive and Maven resources
- build.MustRun(gomobileTool("bind", "-ldflags", "-s -w", "--target", "android", "--javapkg", "org.ethereum", "-v", "github.com/ethereum/go-ethereum/mobile"))
- if *local {
- // If we're building locally, copy bundle to build dir and skip Maven
- os.Rename("geth.aar", filepath.Join(GOBIN, "geth.aar"))
- os.Rename("geth-sources.jar", filepath.Join(GOBIN, "geth-sources.jar"))
- return
- }
- meta := newMavenMetadata(env)
- build.Render("build/mvn.pom", meta.Package+".pom", 0755, meta)
- // Skip Maven deploy and Azure upload for PR builds
- maybeSkipArchive(env)
- // Sign and upload the archive to Azure
- archive := "geth-" + archiveBasename("android", params.ArchiveVersion(env.Commit)) + ".aar"
- os.Rename("geth.aar", archive)
- if err := archiveUpload(archive, *upload, *signer, *signify); err != nil {
- log.Fatal(err)
- }
- // Sign and upload all the artifacts to Maven Central
- os.Rename(archive, meta.Package+".aar")
- if *signer != "" && *deploy != "" {
- // Import the signing key into the local GPG instance
- key := getenvBase64(*signer)
- gpg := exec.Command("gpg", "--import")
- gpg.Stdin = bytes.NewReader(key)
- build.MustRun(gpg)
- keyID, err := build.PGPKeyID(string(key))
- if err != nil {
- log.Fatal(err)
- }
- // Upload the artifacts to Sonatype and/or Maven Central
- repo := *deploy + "/service/local/staging/deploy/maven2"
- if meta.Develop {
- repo = *deploy + "/content/repositories/snapshots"
- }
- build.MustRunCommand("mvn", "gpg:sign-and-deploy-file", "-e", "-X",
- "-settings=build/mvn.settings", "-Durl="+repo, "-DrepositoryId=ossrh",
- "-Dgpg.keyname="+keyID,
- "-DpomFile="+meta.Package+".pom", "-Dfile="+meta.Package+".aar")
- }
- }
- func gomobileTool(subcmd string, args ...string) *exec.Cmd {
- cmd := exec.Command(filepath.Join(GOBIN, "gomobile"), subcmd)
- cmd.Args = append(cmd.Args, args...)
- cmd.Env = []string{
- "PATH=" + GOBIN + string(os.PathListSeparator) + os.Getenv("PATH"),
- }
- for _, e := range os.Environ() {
- if strings.HasPrefix(e, "GOPATH=") || strings.HasPrefix(e, "PATH=") || strings.HasPrefix(e, "GOBIN=") {
- continue
- }
- cmd.Env = append(cmd.Env, e)
- }
- cmd.Env = append(cmd.Env, "GOBIN="+GOBIN)
- return cmd
- }
- type mavenMetadata struct {
- Version string
- Package string
- Develop bool
- Contributors []mavenContributor
- }
- type mavenContributor struct {
- Name string
- Email string
- }
- func newMavenMetadata(env build.Environment) mavenMetadata {
- // Collect the list of authors from the repo root
- contribs := []mavenContributor{}
- if authors, err := os.Open("AUTHORS"); err == nil {
- defer authors.Close()
- scanner := bufio.NewScanner(authors)
- for scanner.Scan() {
- // Skip any whitespace from the authors list
- line := strings.TrimSpace(scanner.Text())
- if line == "" || line[0] == '#' {
- continue
- }
- // Split the author and insert as a contributor
- re := regexp.MustCompile("([^<]+) <(.+)>")
- parts := re.FindStringSubmatch(line)
- if len(parts) == 3 {
- contribs = append(contribs, mavenContributor{Name: parts[1], Email: parts[2]})
- }
- }
- }
- // Render the version and package strings
- version := params.Version
- if isUnstableBuild(env) {
- version += "-SNAPSHOT"
- }
- return mavenMetadata{
- Version: version,
- Package: "geth-" + version,
- Develop: isUnstableBuild(env),
- Contributors: contribs,
- }
- }
- // XCode frameworks
- func doXCodeFramework(cmdline []string) {
- var (
- local = flag.Bool("local", false, `Flag whether we're only doing a local build (skip Maven artifacts)`)
- signer = flag.String("signer", "", `Environment variable holding the signing key (e.g. IOS_SIGNING_KEY)`)
- signify = flag.String("signify", "", `Environment variable holding the signify signing key (e.g. IOS_SIGNIFY_KEY)`)
- deploy = flag.String("deploy", "", `Destination to deploy the archive (usually "trunk")`)
- upload = flag.String("upload", "", `Destination to upload the archives (usually "gethstore/builds")`)
- )
- flag.CommandLine.Parse(cmdline)
- env := build.Env()
- tc := new(build.GoToolchain)
- // Build gomobile.
- build.MustRun(tc.Install(GOBIN, "golang.org/x/mobile/cmd/gomobile@latest", "golang.org/x/mobile/cmd/gobind@latest"))
- // Ensure all dependencies are available. This is required to make
- // gomobile bind work because it expects go.sum to contain all checksums.
- build.MustRun(tc.Go("mod", "download"))
- // Build the iOS XCode framework
- bind := gomobileTool("bind", "-ldflags", "-s -w", "--target", "ios", "-v", "github.com/ethereum/go-ethereum/mobile")
- if *local {
- // If we're building locally, use the build folder and stop afterwards
- bind.Dir = GOBIN
- build.MustRun(bind)
- return
- }
- // Create the archive.
- maybeSkipArchive(env)
- archive := "geth-" + archiveBasename("ios", params.ArchiveVersion(env.Commit))
- if err := os.MkdirAll(archive, 0755); err != nil {
- log.Fatal(err)
- }
- bind.Dir, _ = filepath.Abs(archive)
- build.MustRun(bind)
- build.MustRunCommand("tar", "-zcvf", archive+".tar.gz", archive)
- // Sign and upload the framework to Azure
- if err := archiveUpload(archive+".tar.gz", *upload, *signer, *signify); err != nil {
- log.Fatal(err)
- }
- // Prepare and upload a PodSpec to CocoaPods
- if *deploy != "" {
- meta := newPodMetadata(env, archive)
- build.Render("build/pod.podspec", "Geth.podspec", 0755, meta)
- build.MustRunCommand("pod", *deploy, "push", "Geth.podspec", "--allow-warnings")
- }
- }
- type podMetadata struct {
- Version string
- Commit string
- Archive string
- Contributors []podContributor
- }
- type podContributor struct {
- Name string
- Email string
- }
- func newPodMetadata(env build.Environment, archive string) podMetadata {
- // Collect the list of authors from the repo root
- contribs := []podContributor{}
- if authors, err := os.Open("AUTHORS"); err == nil {
- defer authors.Close()
- scanner := bufio.NewScanner(authors)
- for scanner.Scan() {
- // Skip any whitespace from the authors list
- line := strings.TrimSpace(scanner.Text())
- if line == "" || line[0] == '#' {
- continue
- }
- // Split the author and insert as a contributor
- re := regexp.MustCompile("([^<]+) <(.+)>")
- parts := re.FindStringSubmatch(line)
- if len(parts) == 3 {
- contribs = append(contribs, podContributor{Name: parts[1], Email: parts[2]})
- }
- }
- }
- version := params.Version
- if isUnstableBuild(env) {
- version += "-unstable." + env.Buildnum
- }
- return podMetadata{
- Archive: archive,
- Version: version,
- Commit: env.Commit,
- Contributors: contribs,
- }
- }
- // Cross compilation
- func doXgo(cmdline []string) {
- var (
- alltools = flag.Bool("alltools", false, `Flag whether we're building all known tools, or only on in particular`)
- )
- flag.CommandLine.Parse(cmdline)
- env := build.Env()
- var tc build.GoToolchain
- // Make sure xgo is available for cross compilation
- build.MustRun(tc.Install(GOBIN, "github.com/karalabe/xgo@latest"))
- // If all tools building is requested, build everything the builder wants
- args := append(buildFlags(env), flag.Args()...)
- if *alltools {
- args = append(args, []string{"--dest", GOBIN}...)
- for _, res := range allToolsArchiveFiles {
- if strings.HasPrefix(res, GOBIN) {
- // Binary tool found, cross build it explicitly
- args = append(args, "./"+filepath.Join("cmd", filepath.Base(res)))
- build.MustRun(xgoTool(args))
- args = args[:len(args)-1]
- }
- }
- return
- }
- // Otherwise execute the explicit cross compilation
- path := args[len(args)-1]
- args = append(args[:len(args)-1], []string{"--dest", GOBIN, path}...)
- build.MustRun(xgoTool(args))
- }
- func xgoTool(args []string) *exec.Cmd {
- cmd := exec.Command(filepath.Join(GOBIN, "xgo"), args...)
- cmd.Env = os.Environ()
- cmd.Env = append(cmd.Env, []string{"GOBIN=" + GOBIN}...)
- return cmd
- }
- // Binary distribution cleanups
- func doPurge(cmdline []string) {
- var (
- store = flag.String("store", "", `Destination from where to purge archives (usually "gethstore/builds")`)
- limit = flag.Int("days", 30, `Age threshold above which to delete unstable archives`)
- )
- flag.CommandLine.Parse(cmdline)
- if env := build.Env(); !env.IsCronJob {
- log.Printf("skipping because not a cron job")
- os.Exit(0)
- }
- // Create the azure authentication and list the current archives
- auth := build.AzureBlobstoreConfig{
- Account: strings.Split(*store, "/")[0],
- Token: os.Getenv("AZURE_BLOBSTORE_TOKEN"),
- Container: strings.SplitN(*store, "/", 2)[1],
- }
- blobs, err := build.AzureBlobstoreList(auth)
- if err != nil {
- log.Fatal(err)
- }
- fmt.Printf("Found %d blobs\n", len(blobs))
- // Iterate over the blobs, collect and sort all unstable builds
- for i := 0; i < len(blobs); i++ {
- if !strings.Contains(blobs[i].Name, "unstable") {
- blobs = append(blobs[:i], blobs[i+1:]...)
- i--
- }
- }
- for i := 0; i < len(blobs); i++ {
- for j := i + 1; j < len(blobs); j++ {
- if blobs[i].Properties.LastModified.After(blobs[j].Properties.LastModified) {
- blobs[i], blobs[j] = blobs[j], blobs[i]
- }
- }
- }
- // Filter out all archives more recent that the given threshold
- for i, blob := range blobs {
- if time.Since(blob.Properties.LastModified) < time.Duration(*limit)*24*time.Hour {
- blobs = blobs[:i]
- break
- }
- }
- fmt.Printf("Deleting %d blobs\n", len(blobs))
- // Delete all marked as such and return
- if err := build.AzureBlobstoreDelete(auth, blobs); err != nil {
- log.Fatal(err)
- }
- }
|