Re: [go-nuts] Gitlab CI loses its marbles attempting go get.

2018-09-11 Thread Mirko Friedenhagen
And BTW, when you use Golang 1.11 you should definitely look into using „go mod“ for dependencies which offers pip freeze and pip install -r. The good thing is, that you do not need to symlink your project into the GOPATH then :-) -- You received this message because you are subscribed to the G

Re: [go-nuts] Gitlab CI loses its marbles attempting go get.

2018-09-11 Thread Mirko Friedenhagen
Hello Eric, if you host your project at gitlab.com, you may use any Docker image available at the standard docker hub, e.g. https://hub.docker.com/_/golang/ Depending on whether you choose the alpine or Debian based image, you may easily install Python, this is in my experience less cumbersome

Re: [go-nuts] Gitlab CI loses its marbles attempting go get.

2018-09-10 Thread Eric S. Raymond
Todd Neal : > I took a look at https://gitlab.com/esr/reposurgeon/ > and put this together: > > FROM buildpack-deps:jessie > RUN apt-get update -qy && apt-get install -qy --no-install-recommends golang > git > RUN go version > > You’re running go1.3.3 whic

Re: [go-nuts] Gitlab CI loses its marbles attempting go get.

2018-09-10 Thread Todd Neal
> On Sep 10, 2018, at 8:17 PM, Eric S. Raymond wrote: > > Todd Neal : >> >>> On Sep 10, 2018, at 5:53 PM, 'Borman, Paul' via golang-nuts >>> wrote: >>> >>> Have you checked your Go version? >> >> This is likely the cause, I just tested with go 1.4.3 and get a similar >> error. I tested a

Re: [go-nuts] Gitlab CI loses its marbles attempting go get.

2018-09-10 Thread Todd Neal
> On Sep 10, 2018, at 5:53 PM, 'Borman, Paul' via golang-nuts > wrote: > > Have you checked your Go version? This is likely the cause, I just tested with go 1.4.3 and get a similar error. I tested and both the golang:1.10.4-alpine3.8 and golang:1.11-alpine3.8 base images work fine. - Todd

Re: [go-nuts] Gitlab CI loses its marbles attempting go get.

2018-09-10 Thread Eric S. Raymond
Todd Neal : > > > On Sep 10, 2018, at 5:53 PM, 'Borman, Paul' via golang-nuts > > wrote: > > > > Have you checked your Go version? > > This is likely the cause, I just tested with go 1.4.3 and get a similar > error. I tested and both the golang:1.10.4-alpine3.8 and > golang:1.11-alpine3.8 b

Re: [go-nuts] Gitlab CI loses its marbles attempting go get.

2018-09-10 Thread 'Borman, Paul' via golang-nuts
Have you checked your Go version? On Sep 10, 2018, at 5:10 PM, Eric Raymond mailto:e...@thyrsus.com>> wrote: On Monday, September 10, 2018 at 5:56:23 PM UTC-4, Uli Kunitz wrote: Use GOPATH= go get -u golang.org/x/crypto/ssh/terminal The package g