aboutsummaryrefslogtreecommitdiffstats
path: root/internal/build
Commit message (Collapse)AuthorAgeFilesLines
* all: update license informationFelix Lange2016-11-092-0/+2
|
* build: fix remote path for archive uploads (#3243)Felix Lange2016-11-091-0/+6
| | | | archiveUpload did not handle absolute paths correctly. Fix it by using the basename and ensure that uploads can be tested using -n.
* build: NSIS based Windows installer (#3240)Péter Szilágyi2016-11-091-0/+23
| | | | This commit adds support for creating Windows installers to ci.go
* internal/build: call correct signer methodPéter Szilágyi2016-11-081-1/+1
|
* build, internal/build: misc improvements (#3229)Felix Lange2016-11-031-10/+18
| | | | | | | | | | | | | * travis.yml: don't create darwin/386 builds * build: remove godep remains * internal/build: improve archives - enable compression for zip files - don't write half-complete archives * build: add -unstable to archive names
* travis, build: implement uploading archives to azurePéter Szilágyi2016-11-032-0/+116
|
* Godeps, vendor: convert dependency management to trash (#3198)Péter Szilágyi2016-10-291-5/+4
| | | | | | | | | | | | | | | | | | | | | | | This commit converts the dependency management from Godeps to the vendor folder, also switching the tool from godep to trash. Since the upstream tool lacks a few features proposed via a few PRs, until those PRs are merged in (if), use github.com/karalabe/trash. You can update dependencies via trash --update. All dependencies have been updated to their latest version. Parts of the build system are reworked to drop old notions of Godeps and invocation of the go vet command so that it doesn't run against the vendor folder, as that will just blow up during vetting. The conversion drops OpenCL (and hence GPU mining support) from ethash and our codebase. The short reasoning is that there's noone to maintain and having opencl libs in our deps messes up builds as go install ./... tries to build them, failing with unsatisfied link errors for the C OpenCL deps. golang.org/x/net/context is not vendored in. We expect it to be fetched by the user (i.e. using go get). To keep ci.go builds reproducible the package is "vendored" in build/_vendor.
* internal/build: fix git tag env variable for AppVeyorFelix Lange2016-10-031-1/+1
|
* internal/build: use less edgy command to get the branch nameFelix Lange2016-10-031-1/+3
|
* build: improve debian packagingFelix Lange2016-10-022-8/+120
| | | | | | | | | | This commit tweaks the debian packaging tool: * All build environment metadata can now be overriden on the command line. This allows testing the CI build behaviour locally. * -unstable packages now actually contain the binaries (oops) * packages use Go 1.7 to build * archiving is skipped for PR builds
* build: add ci.go, use it everywhereFelix Lange2016-06-222-0/+299
The new build script, ci.go, replaces some of the older shell scripts. ci.go can compile go-ethereum, run the tests, create release archives and debian source packages.