ethereum / ethereum-buildbot

Ethereum Buildbot
https://build.ethdev.com/waterfall
MIT License
32 stars 36 forks source link

Go Build Steps Have Changed #16

Closed fjl closed 9 years ago

fjl commented 9 years ago

The Go repositories have been merged today. go-ethereum is now the only repo that needs to be built. In addition, the package paths for mist and the ethereum CLI client have changed.

Please update the build steps. I suggest building like this:

export GOPATH=$PWD
mkdir -p src/github.com/ethereum
git clone https://github.com/ethereum/go-ethereum src/github.com/ethereum/go-ethereum

cd src/github.com/ethereum/go-ethereum
git checkout $branch

go get -d -t ./...    # download dependencies
go install ./...      # build all executables
go test ./...         # run all unit tests
fjl commented 9 years ago

Ping

fjl commented 9 years ago

Can you think about running the unit tests as well? It would really help us since they seem to break all the time.

caktux commented 9 years ago

Steps have been updated shortly after, will be looking into those tests, thanks