Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | build: limit test concurrency | Felix Lange | 2016-09-26 | 1 | -0/+3 |
| | | | | | | TravisCI and AppVeyor run the tests in very slow VMs. Some of our tests can't cope with that. Running less tests in parallel should make them somewhat less flakey. | ||||
* | Merge pull request #2962 from fjl/release-move | Felix Lange | 2016-08-31 | 1 | -0/+1 |
|\ | | | | | contracts/release: move package release to contracts/ | ||||
| * | contracts/release: move package release to contracts/ | Felix Lange | 2016-08-30 | 1 | -0/+1 |
| | | | | | | | | | | | | This change also deletes generator.go, moving the only interesting line in it into release.go. The binding has been regenerated with abigen from develop and solc v0.3.6. | ||||
* | | contracts/chequebook/contract: fix possible reentrancy bug in chequebook.sol | Daniel A. Nagy | 2016-08-31 | 1 | -0/+1 |
|/ | |||||
* | contracts/ens: Add ENS contract binding | Nick Johnson | 2016-08-30 | 1 | -0/+2 |
| | |||||
* | Makefile, build: move cross compilation into ci.go | Péter Szilágyi | 2016-08-08 | 2 | -22/+32 |
| | |||||
* | build: add ci.go, use it everywhere | Felix Lange | 2016-06-22 | 12 | -59/+552 |
| | | | | | | 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. | ||||
* | build: add CI scripts for windows | Felix Lange | 2016-05-08 | 2 | -0/+41 |
| | |||||
* | build: tweak update-license.go | Felix Lange | 2016-04-15 | 1 | -6/+16 |
| | |||||
* | all: Add GPU mining, disabled by default | Gustav Simonsson | 2015-10-07 | 1 | -0/+4 |
| | |||||
* | core, trie: new trie | Felix Lange | 2015-09-23 | 1 | -1/+2 |
| | |||||
* | build: avoid -X separator warning with Go >= 1.5 | Felix Lange | 2015-08-27 | 1 | -1/+6 |
| | |||||
* | Codecov integration | Taylor Gerring | 2015-08-19 | 1 | -22/+11 |
| | |||||
* | all: fix license headers one more time | Felix Lange | 2015-07-24 | 1 | -1/+1 |
| | | | | I forgot to update one instance of "go-ethereum" in commit 3f047be5a. | ||||
* | all: update license headers to distiguish GPL/LGPL | Felix Lange | 2015-07-23 | 1 | -8/+16 |
| | | | | | All code outside of cmd/ is licensed as LGPL. The headers now reflect this by calling the whole work "the go-ethereum library". | ||||
* | crypto: fix license of curve.go | Felix Lange | 2015-07-23 | 1 | -0/+1 |
| | | | | | crypto/curve.go is not our code and has its own license. This commit excludes it in update-license.go and removes our GPL header. | ||||
* | all: add some godoc synopsis comments | Felix Lange | 2015-07-07 | 1 | -0/+1 |
| | |||||
* | build: change license regexp for // comments | Felix Lange | 2015-07-07 | 1 | -1/+1 |
| | |||||
* | build: new update-license.go | Felix Lange | 2015-07-07 | 1 | -0/+346 |
| | | | | | | | This version is less clever. All names are listed in a single file, AUTHORS. All source files have the same header. This is an improvement over the previous version, which attempted to list copyright holders in each source file. | ||||
* | Build error fixes | Taylor Gerring | 2015-06-19 | 1 | -1/+1 |
| | |||||
* | Use Makefile for Travis tests | Felix Lange | 2015-04-29 | 1 | -0/+26 |
| | |||||
* | Makefile: set main.gitCommit when building | Felix Lange | 2015-04-29 | 1 | -0/+13 |
| | |||||
* | build: run build commands from the fake workspace root | Felix Lange | 2015-04-29 | 1 | -1/+5 |
| | | | | This ensures that compiler error messages contain the correct path. | ||||
* | Makefile: for non-gophers | Felix Lange | 2015-04-19 | 1 | -0/+28 |
Many people need or want to build go-ethereum from the git repository, mostly to stay up to date with recent changes. We cannot expect that people without Go experience grok the Go workspace concept. With the Makefile, building from github requires only three steps (provided that a Go toolchain is installed): - git clone https://github.com/ethereum/go-ethereum - ... install C libraries (libgmp, etc.) ... - make |