Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

--client='go.*master' --sim='.*ethereum.*' : go-ethereum requires at least Go version 1.4 and cannot be compiled with an earlier version #185

Closed
meowsbits opened this issue Mar 5, 2019 · 4 comments

Comments

@meowsbits
Copy link
Contributor

meowsbits commented Mar 5, 2019

Possible duplicate of #127

Setup
++ go install
++ docker ps
CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS               NAMES

OS and program version info

  • OS/arch: Darwin 18.2.0 x86_64
  • Working directory: /Users/ia/go/src/github.com/ethereum/hive
  • Git HEAD: 571fafd
++ go version
go version go1.11.4 darwin/amd64
++ docker -v
Docker version 18.09.2, build 6247962

Actual result

The program fails.

Expected result

The program should succeed.

Reproduce

Run
Command(s)
hive --docker-noshell --client='go.*master' --sim='.*ethereum.*' --test=NONE --loglevel 10
Yields
�[32mINFO�[0m[03-05|11:30:40] docker daemon online                     �[32mversion�[0m=18.09.2
�[32mINFO�[0m[03-05|11:30:40] building new docker image                �[32mclient�[0m=go-ethereum_master �[32mnocache�[0m=false
Step 1/10 : FROM alpine:latest
 ---> caf27325b298
Step 2/10 : RUN   apk add --update bash curl jq go git make gcc musl-dev                	  ca-certificates linux-headers                           &&   git clone --depth 1 https://github.com/ethereum/go-ethereum &&   (cd go-ethereum && make geth)                               &&   (cd go-ethereum                                             &&   echo "{}"                                                        | jq ".+ {\"repo\":\"$(git config --get remote.origin.url)\"}"   | jq ".+ {\"branch\":\"$(git rev-parse --abbrev-ref HEAD)\"}"    | jq ".+ {\"commit\":\"$(git rev-parse HEAD)\"}"               	> /version.json)                                            &&   cp go-ethereum/build/bin/geth /geth                         &&   apk del go git make gcc musl-dev linux-headers              &&   rm -rf /go-ethereum && rm -rf /var/cache/apk/*
 ---> Using cache
 ---> cd42dc139adf
Step 3/10 : ADD geth.sh /geth.sh
 ---> Using cache
 ---> 9860dfc64550
Step 4/10 : RUN chmod +x /geth.sh
 ---> Using cache
 ---> 3ae5cd5a7bd5
Step 5/10 : ADD enode.sh /enode.sh
 ---> Using cache
 ---> c11e76f68cb0
Step 6/10 : RUN chmod +x /enode.sh
 ---> Using cache
 ---> 7a7899318054
Step 7/10 : ADD genesis.json /genesis.json
 ---> Using cache
 ---> abfc55286754
Step 8/10 : EXPOSE 8545 8546 30303 30303/udp
 ---> Using cache
 ---> 36c183da03e4
Step 9/10 : RUN   /geth makecache     1 ~/.ethereum/geth/ethash &&   /geth makecache 30001 ~/.ethereum/geth/ethash
 ---> Using cache
 ---> 95cf45b05da7
Step 10/10 : ENTRYPOINT ["/geth.sh"]
 ---> Using cache
 ---> 29e371010135
Successfully built 29e371010135
Successfully tagged hive/clients/go-ethereum_master:latest
�[32mINFO�[0m[03-05|11:30:56] building clients for validation          �[32mpattern�[0m=go.*master
�[32mINFO�[0m[03-05|11:30:56] building new docker image                �[32mclient�[0m=go-ethereum_master �[32mnocache�[0m=false
Step 1/10 : FROM alpine:latest
 ---> caf27325b298
Step 2/10 : RUN   apk add --update bash curl jq go git make gcc musl-dev                	  ca-certificates linux-headers                           &&   git clone --depth 1 https://github.com/ethereum/go-ethereum &&   (cd go-ethereum && make geth)                               &&   (cd go-ethereum                                             &&   echo "{}"                                                        | jq ".+ {\"repo\":\"$(git config --get remote.origin.url)\"}"   | jq ".+ {\"branch\":\"$(git rev-parse --abbrev-ref HEAD)\"}"    | jq ".+ {\"commit\":\"$(git rev-parse HEAD)\"}"               	> /version.json)                                            &&   cp go-ethereum/build/bin/geth /geth                         &&   apk del go git make gcc musl-dev linux-headers              &&   rm -rf /go-ethereum && rm -rf /var/cache/apk/*
 ---> Using cache
 ---> cd42dc139adf
Step 3/10 : ADD geth.sh /geth.sh
 ---> Using cache
 ---> 9860dfc64550
Step 4/10 : RUN chmod +x /geth.sh
 ---> Using cache
 ---> 3ae5cd5a7bd5
Step 5/10 : ADD enode.sh /enode.sh
 ---> Using cache
 ---> c11e76f68cb0
Step 6/10 : RUN chmod +x /enode.sh
 ---> Using cache
 ---> 7a7899318054
Step 7/10 : ADD genesis.json /genesis.json
 ---> Using cache
 ---> abfc55286754
Step 8/10 : EXPOSE 8545 8546 30303 30303/udp
 ---> Using cache
 ---> 36c183da03e4
Step 9/10 : RUN   /geth makecache     1 ~/.ethereum/geth/ethash &&   /geth makecache 30001 ~/.ethereum/geth/ethash
 ---> Using cache
 ---> 95cf45b05da7
Step 10/10 : ENTRYPOINT ["/geth.sh"]
 ---> Using cache
 ---> 29e371010135
Successfully built 29e371010135
Successfully tagged hive/clients/go-ethereum_master:latest
�[32mINFO�[0m[03-05|11:30:59] building validators for testing          �[32mpattern�[0m=NONE
�[32mINFO�[0m[03-05|11:30:59] creating ethash container 
�[32mINFO�[0m[03-05|11:30:59] building new docker image                �[32mnocache�[0m=false
Step 1/3 : FROM ethereum/client-go
 ---> 673fa43a4498
Step 2/3 : RUN   echo '#!/bin/sh'                          > /root/ethash.sh &&   echo 'set -e'                            >> /root/ethash.sh &&   echo 'geth makedag 1 /root/.ethash'      >> /root/ethash.sh &&   echo 'if [ "$UID" != "0" ]; then'        >> /root/ethash.sh &&   echo '  adduser -u $UID -D ethash'       >> /root/ethash.sh &&   echo '  chown -R ethash /root/.ethash/*' >> /root/ethash.sh &&   echo 'fi'                                >> /root/ethash.sh &&   chmod +x /root/ethash.sh
 ---> Using cache
 ---> 079669c7cc81
Step 3/3 : ENTRYPOINT ["/root/ethash.sh"]
 ---> Using cache
 ---> 5a6c61c8328f
Successfully built 5a6c61c8328f
Successfully tagged hive/internal/ethash:latest
�[36mDBUG�[0m[03-05|11:31:12] created ethash container 
�[32mINFO�[0m[03-05|11:31:12] generating genesis DAG 
�[36mDBUG�[0m[03-05|11:31:12] attaching to container 
�[36mDBUG�[0m[03-05|11:31:12] starting container 
WARN [03-05|17:31:37.009] Sanitizing cache to Go's GC limits       provided=1024 updated=666
�[36mDBUG�[0m[03-05|11:31:51] deleting ethash container 
�[32mINFO�[0m[03-05|11:32:15] building clients for simulation          �[32mpattern�[0m=go.*master
�[32mINFO�[0m[03-05|11:32:15] building new docker image                �[32mclient�[0m=go-ethereum_master �[32mnocache�[0m=false
Step 1/10 : FROM alpine:latest
 ---> caf27325b298
Step 2/10 : RUN   apk add --update bash curl jq go git make gcc musl-dev                	  ca-certificates linux-headers                           &&   git clone --depth 1 https://github.com/ethereum/go-ethereum &&   (cd go-ethereum && make geth)                               &&   (cd go-ethereum                                             &&   echo "{}"                                                        | jq ".+ {\"repo\":\"$(git config --get remote.origin.url)\"}"   | jq ".+ {\"branch\":\"$(git rev-parse --abbrev-ref HEAD)\"}"    | jq ".+ {\"commit\":\"$(git rev-parse HEAD)\"}"               	> /version.json)                                            &&   cp go-ethereum/build/bin/geth /geth                         &&   apk del go git make gcc musl-dev linux-headers              &&   rm -rf /go-ethereum && rm -rf /var/cache/apk/*
 ---> Using cache
 ---> cd42dc139adf
Step 3/10 : ADD geth.sh /geth.sh
 ---> Using cache
 ---> 9860dfc64550
Step 4/10 : RUN chmod +x /geth.sh
 ---> Using cache
 ---> 3ae5cd5a7bd5
Step 5/10 : ADD enode.sh /enode.sh
 ---> Using cache
 ---> c11e76f68cb0
Step 6/10 : RUN chmod +x /enode.sh
 ---> Using cache
 ---> 7a7899318054
Step 7/10 : ADD genesis.json /genesis.json
 ---> Using cache
 ---> abfc55286754
Step 8/10 : EXPOSE 8545 8546 30303 30303/udp
 ---> Using cache
 ---> 36c183da03e4
Step 9/10 : RUN   /geth makecache     1 ~/.ethereum/geth/ethash &&   /geth makecache 30001 ~/.ethereum/geth/ethash
 ---> Using cache
 ---> 95cf45b05da7
Step 10/10 : ENTRYPOINT ["/geth.sh"]
 ---> Using cache
 ---> 29e371010135
Successfully built 29e371010135
Successfully tagged hive/clients/go-ethereum_master:latest
�[32mINFO�[0m[03-05|11:32:19] building simulators for testing          �[32mpattern�[0m=.*ethereum.*
�[32mINFO�[0m[03-05|11:32:19] building new docker image                �[32msimulator�[0m=ethereum/consensus �[32mnocache�[0m=false
Step 1/6 : FROM jfloff/alpine-python:2.7-onbuild
# Executing 3 build triggers
 ---> Using cache
 ---> Using cache
 ---> Using cache
 ---> 2644096da581
Step 2/6 : RUN apk add --update curl git &&   git clone --depth 1 https://github.com/ethereum/tests.git && echo "cacheoff6"
 ---> Using cache
 ---> 6be49baa2c12
Step 3/6 : ADD simulator.sh /simulator.sh
 ---> Using cache
 ---> c79a5e2fdbd5
Step 4/6 : RUN chmod +x /simulator.sh
 ---> Using cache
 ---> e85784aedda4
Step 5/6 : COPY *.py /
 ---> Using cache
 ---> 6337db72e576
Step 6/6 : ENTRYPOINT ["python","/simulator.py"]
 ---> Using cache
 ---> 3a26379adbe4
Successfully built 3a26379adbe4
Successfully tagged hive/simulators/ethereum/consensus:latest
�[32mINFO�[0m[03-05|11:32:24] building new docker image                �[32msimulator�[0m=ethereum/consensus2 �[32mnocache�[0m=false
Step 1/10 : FROM golang:1.11-alpine as builder
 ---> cb1c8647572c
Step 2/10 : RUN apk add --no-cache git make gcc musl-dev linux-headers
 ---> Using cache
 ---> 960191400668
Step 3/10 : RUN go get github.com/holiman/goconsensus && go install github.com/holiman/goconsensus
 ---> Using cache
 ---> 5e2fe3e5d396
Step 4/10 : FROM alpine:latest
 ---> caf27325b298
Step 5/10 : RUN apk add --no-cache ca-certificates git
 ---> Using cache
 ---> f55b74f63b7a
Step 6/10 : COPY --from=builder /go/bin/goconsensus /usr/local/bin/goconsensus
 ---> Using cache
 ---> 89b8df9d95cc
Step 7/10 : RUN git clone --depth 1 https://github.com/ethereum/tests.git /tests
 ---> Using cache
 ---> 59c43585ef6c
Step 8/10 : RUN chmod a+x /usr/local/bin/goconsensus
 ---> Using cache
 ---> 5c26e561c15e
Step 9/10 : ENV TESTPATH /tests
 ---> Using cache
 ---> acce736df7c4
Step 10/10 : CMD ["/usr/local/bin/goconsensus"]
 ---> Using cache
 ---> a720838c8b40
Successfully built a720838c8b40
Successfully tagged hive/simulators/ethereum/consensus2:latest
�[32mINFO�[0m[03-05|11:32:27] building new docker image                �[32msimulator�[0m=ethereum/rpc/eth �[32mnocache�[0m=false
Step 1/31 : FROM golang:1-alpine
 ---> d4953956cf1e
Step 2/31 : RUN apk add --update git make gcc musl-dev curl jq linux-headers
 ---> Using cache
 ---> 77a7b99ea47e
Step 3/31 : RUN (git clone -b master --single-branch https://github.com/ethereum/go-ethereum /go/src/github.com/ethereum/go-ethereum)
 ---> Using cache
 ---> 71da5d74a22f
Step 4/31 : RUN (cd /go/src/github.com/ethereum/go-ethereum && git checkout c8695fae359aa327da9203a57ffaf4f2d47d4370)
 ---> Using cache
 ---> 7a365c8416bd
Step 5/31 : RUN (cd /go/src/github.com/ethereum/go-ethereum && GOPATH=/go make all)
 ---> Running in 12dd037e417a
build/env.sh go run build/ci.go install
�[91mci.go:161: You have Go version go1.12
�[0m�[91mci.go:162: go-ethereum requires at least Go version 1.4 and cannot
ci.go:163: be compiled with an earlier version. Please upgrade your Go installation.
�[0m�[91mexit status 1
�[0m�[91mmake: *** [Makefile:25: all] Error 1
�[0m�[31mEROR�[0m[03-05|11:33:31] failed to build docker image             �[31msimulator�[0m=ethereum/rpc/eth �[31merror�[0m="The command '/bin/sh -c (cd /go/src/github.com/ethereum/go-ethereum && GOPATH=/go make all)' returned a non-zero code: 2"
�[35mCRIT�[0m[03-05|11:33:31] failed to simulate clients               �[35merror�[0m="simulators/ethereum/rpc/eth: The command '/bin/sh -c (cd /go/src/github.com/ethereum/go-ethereum && GOPATH=/go make all)' returned a non-zero code: 2"
@holiman
Copy link
Collaborator

holiman commented Mar 8, 2019

Go 1.4 is ancient, by go-standards. I don't think geth even retains backwards compatibility through updates, so neither can hive.

@holiman holiman closed this as completed Mar 8, 2019
@meowsbits
Copy link
Contributor Author

Right, but

�[91mci.go:161: You have Go version go1.12
�[0m�[91mci.go:162: go-ethereum requires at least Go version 1.4 and cannot
ci.go:163: be compiled with an earlier version. Please upgrade your Go installation.

@meowsbits
Copy link
Contributor Author

Maybe this is an ethereum/go-ethereum issue and not a Hive one.

@meowsbits
Copy link
Contributor Author

Given #185 (comment), I think this should be reopened.

cc @holiman

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants