Skip to content

Can not build anymore since version 1.9.0 #7997

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

Closed
7 tasks
ecsgh opened this issue Aug 27, 2019 · 20 comments · Fixed by #8008
Closed
7 tasks

Can not build anymore since version 1.9.0 #7997

ecsgh opened this issue Aug 27, 2019 · 20 comments · Fixed by #8008

Comments

@ecsgh
Copy link

ecsgh commented Aug 27, 2019

  • Gitea version (or commit ref): 1.9.2
  • Git version:2.16.4
  • Operating system: openSUSE Leap 15.1, openSUSE Leap 15.0, openSUSE Tumbleweed
  • Database (use [x]):
    • PostgreSQL
    • MySQL
    • MSSQL
    • SQLite
  • Can you reproduce the bug at https://try.gitea.io:
    • Yes (provide example URL)
    • No
    • Not relevant
  • Log gist:

Description

A build using opensuse build service and also local is not possible.
First I want to build gitea in the opensuse build service.
But this fails, because the build process would like to load different packages from github, even though the files actually exist in the vendor directory of the source. The buildservice does not allow external sources to be downloaded during the build process.
Up to version 1.8.2 the build worked without problems.
As of version 1.9.0, this is no longer possible.
Even a build directly does not work. I first download the 1.9.2 release. Unzip the source and change to the directory. then I do the following:
TAGS = "bindata" make generate all
It then appears:
github.com/klauspost/compress/gzip
github.com/blevesearch/bleve/index/scorch
make: *** [Makefile: 315: gitea] Error 1

Why are the files in the vendor directory no longer used?
What do I have to do to reuse it so that I can recreate a package using opensuse buid service?

@typeless
Copy link
Contributor

Which version of go did you use?

@ecsgh
Copy link
Author

ecsgh commented Aug 27, 2019

Version in Leap 15.1: 1.11.10
But i think this is not the problem.
The main problem is, that the vendor dir does not use at build time.

@typeless
Copy link
Contributor

I think 87404d7 should fix the problem.

@lunny
Copy link
Member

lunny commented Aug 28, 2019

@typeless right. That's only in v1.10 not v1.9

@sapk
Copy link
Member

sapk commented Aug 28, 2019

@ecsgh Can you try those commands ?:

GO111MODULE=on go generate -mod=vendor ./...
GO111MODULE=on go build -mod=vendor -v -tags 'bindata' -ldflags '-s -w -X "main.Version=1.9.2" -X "main.Tags=bindata"' -o ./gitea

@ecsgh
Copy link
Author

ecsgh commented Aug 30, 2019

This bug is not fixed.
When i use:
GO111MODULE=on go generate -mod=vendor ./...
the build service would like to continue to download the vendor packages. But this is not possible in the build service and was not necessary until version 1.8.3. Thus, he does not use the packages in the vendor directory.
When i use only:
GO111MODULE=on go build -mod=vendor -v -tags 'bindata' -ldflags '-s -w -X "main.Version=1.9.2" -X "main.Tags=bindata"' -o ./gitea
then en error rise up:
[ 4s] + go build -mod=vendor -v -tags bindata -ldflags '-s -w -X "main.Version=1.9.2" -X "main.Tags=bindata"' -o ./gitea
[ 4s] code.gitea.io/gitea/modules/options
[ 4s] code.gitea.io/gitea/modules/public
[ 4s] # code.gitea.io/gitea/modules/options
[ 4s] modules/options/static.go:56:12: undefined: Assets
[ 4s] modules/options/static.go:106:12: undefined: Assets
[ 4s] note: module requires Go 1.12# code.gitea.io/gitea/modules/public
[ 4s] modules/public/static.go:15:20: undefined: Assets
[ 4s] note: module requires Go 1.12error: Bad exit status from /var/tmp/rpm-tmp.QNdXNH (%build)

Thus, the build since version 1.9.0 still not possible. What else can I do?
Or. what has changed since 1.9.0?

@lunny
Copy link
Member

lunny commented Aug 30, 2019

I think it may related with my PR #7080 that we use github.com/shurcooL/vfsgen.

GO111MODULE=on go generate -mod=vendor ./...

It will run go run -mod=vendor main.go on file

//go:generate go run -mod=vendor main.go

I think maybe go1.11 didn't support go run -mod=vendor but go1.12 support that.

@ecsgh
Copy link
Author

ecsgh commented Aug 30, 2019

Now I have explicitly used go 1.12.
With the command "GO111MODULE = on go generate -mod = vendor. / ...", go continues to load packages from gitub.

For the command "GO111MODULE = on go build -mod = vendor -v -tags 'bindata' -ldflags '-s -w -X" main.Version = 1.9.2 "-X" main.Tags = bindata "' -o. / gitea "comes now only:

[35s] github.com/klauspost/compress/gzip
[35s] golang.org/x/crypto/acme/autocert
[35s] code.gitea.io/gitea/modules/gzip
[35s] github.com/prometheus/client_golang/prometheus/promhttp
[36s] error: Bad exit status from /var/tmp/rpm-tmp.6dnPuC (% ​​build)
[36s]
[36s]
[36s] RPM build errors:
[36s] Bad exit status from /var/tmp/rpm-tmp.6dnPuC (% ​​build)

Which does not help me, because it is not very meaningful.

I still see the public problem or main problem in the attempt to load packages from github.

And again the question. What has changed since 1.9.0, that is always trying to load packages from github and not vendor to use?
Or is something missing at vendor?

@sapk sapk reopened this Aug 30, 2019
@sapk
Copy link
Member

sapk commented Aug 30, 2019

What has changed since 1.9.0, that is always trying to load packages from github and not vendor to use? -> a lot but mostly using go module in this case and that by default it doesn't use anymore vendor folder
Or is something missing at vendor? -> it shouldn't

The main problem is go generate command that seems to want to check remote package. (it doesn't necessarily download. It may check the version)
There must be a command in the generate list that doesn't use or honor the -mod=vendor flag.
Since the generate command doesn't pass it will not pass the build command with bindata.

@lunny
Copy link
Member

lunny commented Aug 30, 2019

@ecsgh

Could you try the first command as

GO111MODULE=on go generate -mod=vendor -v code.gitea.io/gitea/modules/public code.gitea.io/gitea/modules/options code.gitea.io/gitea/modules/templates

@ecsgh
Copy link
Author

ecsgh commented Aug 30, 2019

No success. :-(

This is the output at build time in opensuse build service:

[ 28s] + cd /home/abuild/rpmbuild/BUILD [ 28s] + /usr/bin/rm -rf /home/abuild/rpmbuild/BUILDROOT/gitea-1.9.2-0.x86_64 [ 28s] ++ dirname /home/abuild/rpmbuild/BUILDROOT/gitea-1.9.2-0.x86_64 [ 28s] + /usr/bin/mkdir -p /home/abuild/rpmbuild/BUILDROOT [ 28s] + /usr/bin/mkdir /home/abuild/rpmbuild/BUILDROOT/gitea-1.9.2-0.x86_64 [ 28s] + cd gitea-1.9.2 [ 28s] + go version [ 28s] go version go1.12.9 linux/amd64 [ 28s] + GO111MODULE=on [ 28s] + go generate -mod=vendor -v code.gitea.io/gitea/modules/public code.gitea.io/gitea/modules/options code.gitea.io/gitea/modules/templates [ 28s] modules/public/dynamic.go [ 28s] modules/public/public.go [ 31s] writing bindata.go [ 31s] go: finding github.com/blevesearch/segment v0.0.0-20160105220820-db70c57796cc [ 31s] go: finding github.com/couchbase/vellum v0.0.0-20190111184608-e91b68ff3efe [ 31s] go: finding github.com/Unknwon/i18n v0.0.0-20171114194641-b64d33658966 [ 31s] go: finding github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a [ 31s] go: finding github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d [ 31s] go: finding github.com/etcd-io/bbolt v1.3.2 [ 31s] go: finding github.com/Unknwon/com v0.0.0-20190321035513-0fed4efef755 [ 31s] go: finding github.com/boombuler/barcode v0.0.0-20161226211916-fe0f26ff6d26 [ 31s] go: finding github.com/facebookgo/httpdown v0.0.0-20160323221027-a3b1354551a2 [ 31s] go: finding github.com/RoaringBitmap/roaring v0.4.7 [ 31s] go: github.com/etcd-io/[email protected]: unknown revision v1.3.2 [ 31s] go: github.com/RoaringBitmap/[email protected]: unknown revision v0.4.7 [ 31s] go: github.com/ethantkoenig/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/693b31e2b22badca7e13d31fa26f379d0b7d67737fff4549bd839a3a01126327: exit status 128: [ 31s] fatal: unable to access 'https://github.com/ethantkoenig/rupture/': Could not resolve host: github.com [ 31s] go: github.com/Unknwon/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/31c7092b233d3c04522e2aba148f73d1fd3912dbad238e244a171ff4794140bf: exit status 128: [ 31s] fatal: unable to access 'https://github.com/Unknwon/i18n/': Could not resolve host: github.com [ 31s] go: finding github.com/go-macaron/binding v0.0.0-20160711225916-9440f336b443 [ 31s] go: finding github.com/lafriks/xormstore v1.0.0 [ 31s] go: finding github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 [ 31s] go: finding github.com/cznic/strutil v0.0.0-20181122101858-275e90344537 [ 31s] go: github.com/lafriks/[email protected]: unknown revision v1.0.0 [ 31s] go: finding github.com/glycerine/goconvey v0.0.0-20190315024820-982ee783a72e [ 31s] go: github.com/cznic/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/2e5370d753e53ed7ceb996fbc96996c174feed8a2998c07ff14315cf311b3523: exit status 128: [ 31s] fatal: unable to access 'https://github.com/cznic/strutil/': Could not resolve host: github.com [ 31s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/text" (https fetch: Get https://golang.org/x/text?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:54309->[::1]:53: read: connection refused) [ 31s] go: finding github.com/go-macaron/inject v0.0.0-20160627170012-d8a0b8677191 [ 31s] go: github.com/cznic/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/0c40695ad575ff92f63ee8a0033b51eaa8b373f37943b7cb0cda9172b771467a: exit status 128: [ 31s] fatal: unable to access 'https://github.com/cznic/b/': Could not resolve host: github.com [ 31s] go: github.com/boombuler/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/22489de97821e94baa022124d71394420fb4e40a88297063e2c8c443cce55e26: exit status 128: [ 31s] fatal: unable to access 'https://github.com/boombuler/barcode/': Could not resolve host: github.com [ 31s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/asn1-ber.v1" (https fetch: Get https://gopkg.in/asn1-ber.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:59099->[::1]:53: read: connection refused) [ 31s] go: finding github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b [ 31s] go: finding github.com/dgrijalva/jwt-go v3.2.0+incompatible [ 31s] go: github.com/facebookgo/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/a0f702a9690b585ba8ede35bd00fb9ee83d4d1036d9a78197309bcf59bb0bc08: exit status 128: [ 31s] fatal: unable to access 'https://github.com/facebookgo/httpdown/': Could not resolve host: github.com [ 31s] go: github.com/go-macaron/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/9893561d2b208f17af46af7673b06e857a6dab34de6d1f5d37eef8e0f8c11b05: exit status 128: [ 31s] fatal: unable to access 'https://github.com/go-macaron/inject/': Could not resolve host: github.com [ 31s] go: finding github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96 [ 31s] go: finding github.com/go-macaron/csrf v0.0.0-20180426211211-503617c6b372 [ 31s] go: github.com/dgrijalva/[email protected]+incompatible: unknown revision v3.2.0 [ 31s] go: github.com/shurcooL/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/377b0c190b0e3c46d939e9f9d7186cb6e6903eb0b98ca261d9c84df5161deb5f: exit status 128: [ 31s] fatal: unable to access 'https://github.com/shurcooL/httpfs/': Could not resolve host: github.com [ 31s] go: finding github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657 [ 31s] go: finding github.com/facebookgo/freeport v0.0.0-20150612182905-d4adf43b75b9 [ 31s] go: github.com/go-macaron/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7d30dc1a0102fbc598bb977524ab6ea70c741f924dfbfcab7aa9b79623d68579: exit status 128: [ 31s] fatal: unable to access 'https://github.com/go-macaron/binding/': Could not resolve host: github.com [ 31s] go: github.com/facebookgo/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7a08904f7ca7b725118fad54f797bae46ea42d6399918c84e4559f43f6e33566: exit status 128: [ 31s] fatal: unable to access 'https://github.com/facebookgo/stack/': Could not resolve host: github.com [ 31s] go: finding github.com/go-macaron/cache v0.0.0-20151013081102-561735312776 [ 31s] go: github.com/blevesearch/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/ed55fddb9cf281207e81d221d5211a84b56f0a1be0ebb37fe05148591062a3a4: exit status 128: [ 31s] fatal: unable to access 'https://github.com/blevesearch/segment/': Could not resolve host: github.com [ 31s] go: gopkg.in/src-d/[email protected]: unrecognized import path "gopkg.in/src-d/go-billy.v4" (https fetch: Get https://gopkg.in/src-d/go-billy.v4?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:50480->[::1]:53: read: connection refused) [ 31s] go: finding github.com/go-macaron/cors v0.0.0-20190309005821-6fd6a9bfe14e9 [ 31s] go: finding github.com/willf/bitset v0.0.0-20180426185212-8ce1146b8621 [ 31s] go: github.com/couchbase/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/3cd6a8dd3d0d8d25bc9e957caf20b7eb9b40310d976ed3309f76c3fa74d5fb1e: exit status 128: [ 31s] fatal: unable to access 'https://github.com/couchbase/vellum/': Could not resolve host: github.com [ 31s] go: github.com/Unknwon/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/2f84e189d78fdca572fb571267858b24f0c3b35a15e1ebcd4675deadc43a4c54: exit status 128: [ 31s] fatal: unable to access 'https://github.com/Unknwon/com/': Could not resolve host: github.com [ 31s] go: finding github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870 [ 31s] go: finding github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd [ 31s] go: github.com/go-macaron/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/bcd49de59dce8a59955e0c739cde4964cb22bacd6f87cb0203bb10e68309c77a: exit status 128: [ 31s] fatal: unable to access 'https://github.com/go-macaron/cache/': Could not resolve host: github.com [ 31s] go: finding github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51 [ 31s] go: github.com/facebookgo/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7200404736c471bc457c4718f76c61c87745515afc30e464afb4a1928a11110a: exit status 128: [ 31s] fatal: unable to access 'https://github.com/facebookgo/subset/': Could not resolve host: github.com [ 31s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/ini.v1" (https fetch: Get https://gopkg.in/ini.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:53225->[::1]:53: read: connection refused) [ 31s] go: github.com/shurcooL/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/eedfa8cac7090a1b71f292f1b6aaecec26438ab750c340c01cbf92820ce7a263: exit status 128: [ 31s] fatal: unable to access 'https://github.com/shurcooL/vfsgen/': Could not resolve host: github.com [ 31s] go: finding github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2 [ 31s] go: finding github.com/tinylib/msgp v0.0.0-20180516164116-c8cf64dff200 [ 31s] go: github.com/go-macaron/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/a0096764fd16bb8f89cb3fcf4330f1a5207887b7ba6ca4ed453da09e907df9a1: exit status 128: [ 31s] fatal: unable to access 'https://github.com/go-macaron/csrf/': Could not resolve host: github.com [ 31s] go: finding github.com/edsrzf/mmap-go v0.0.0-20170320065105-0bce6a688712 [ 31s] go: github.com/glycerine/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/0a88f7134bef26070c5f5c11f6205fa328fdb1e0f639a7348a75a9e5f3262c26: exit status 128: [ 31s] fatal: unable to access 'https://github.com/glycerine/goconvey/': Could not resolve host: github.com [ 31s] go: github.com/kballard/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/10200659182a2049e80180b52076173a6e505306c5402c6914c6b9c478ba64cf: exit status 128: [ 31s] fatal: unable to access 'https://github.com/kballard/go-shellquote/': Could not resolve host: github.com [ 31s] go: github.com/facebookgo/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/88fe2634ac2833be2a40021e94bde30974bfd2a0a4c98a4ede5a01024fba31d6: exit status 128: [ 31s] fatal: unable to access 'https://github.com/facebookgo/freeport/': Could not resolve host: github.com [ 31s] go: finding github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af [ 31s] go: finding github.com/go-macaron/i18n v0.0.0-20160612092837-ef57533c3b0f [ 31s] go: finding github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a [ 31s] go: github.com/willf/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/5e0c047f55b1c6a1f7f223d97771ad92e6f79f9f2e3e921bdf122353fc2a0212: exit status 128: [ 31s] fatal: unable to access 'https://github.com/willf/bitset/': Could not resolve host: github.com [ 31s] go: finding github.com/pquerna/otp v0.0.0-20160912161815-54653902c20e [ 31s] go: github.com/lunny/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/09a4f2dfde3676ab224038184919e4eebbda754dbbe08f4654ffd76800fa2d0e: exit status 128: [ 31s] fatal: unable to access 'https://github.com/lunny/dingtalk_webhook/': Could not resolve host: github.com [ 31s] go: github.com/facebookgo/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/9c49f85b4dc7447a298fe77680f330e3491de9b995c65a4f9a61b4715bfb489f: exit status 128: [ 31s] fatal: unable to access 'https://github.com/facebookgo/ensure/': Could not resolve host: github.com [ 31s] go: finding github.com/mattn/go-sqlite3 v1.10.0 [ 31s] go: finding github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd [ 31s] go: github.com/pquerna/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/c68498bc1e2255e1661039b9cf7d7a6723733d7d1add46ef7e692a6bbd1e650e: exit status 128: [ 31s] fatal: unable to access 'https://github.com/pquerna/otp/': Could not resolve host: github.com [ 31s] go: github.com/go-macaron/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/6a8d5018567175d43fe28f2da01072e0fc2f55c86d3d128d2f305066a72bedbf: exit status 128: [ 31s] fatal: unable to access 'https://github.com/go-macaron/cors/': Could not resolve host: github.com [ 31s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/yaml.v2" (https fetch: Get https://gopkg.in/yaml.v2?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:36203->[::1]:53: read: connection refused) [ 31s] go: finding github.com/gorilla/context v1.1.1 [ 31s] go: github.com/edsrzf/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/361aa085490f47a0ce0bd5ce581ece7b9ce0e1c390b4389ad7c5771098235fd3: exit status 128: [ 31s] fatal: unable to access 'https://github.com/edsrzf/mmap-go/': Could not resolve host: github.com [ 31s] go: github.com/lunny/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7177d7eb5f1127babfd5fd00dc40c957fcf06d5cc7cfd8facda26b1d174276c6: exit status 128: [ 31s] fatal: unable to access 'https://github.com/lunny/nodb/': Could not resolve host: github.com [ 31s] go: finding github.com/markbates/goth v1.49.0 [ 31s] go: finding github.com/blevesearch/bleve v0.0.0-20190214220507-05d86ea8f6e3 [ 31s] go: finding github.com/go-macaron/session v0.0.0-20190131233854-0a0a789bf193 [ 31s] go: github.com/facebookgo/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7999e104939d1a4634837d7a07eebc31b5e9233f3c8eb4941ddcb1f422824d61: exit status 128: [ 31s] fatal: unable to access 'https://github.com/facebookgo/clock/': Could not resolve host: github.com [ 31s] go: gopkg.in/alexcesaro/[email protected]: unrecognized import path "gopkg.in/alexcesaro/quotedprintable.v3" (https fetch: Get https://gopkg.in/alexcesaro/quotedprintable.v3?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:39952->[::1]:53: read: connection refused) [ 31s] go: github.com/markbates/[email protected]: unknown revision v1.49.0 [ 31s] go: finding github.com/denisenkom/go-mssqldb v0.0.0-20180315180555-6a30f4e59a44 [ 31s] go: finding github.com/go-xorm/core v0.6.0 [ 31s] go: github.com/tinylib/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/9a3d10e611f6412589d884667e8073aa31e525ccd368ee5a32cdfc182b06c5fe: exit status 128: [ 31s] fatal: unable to access 'https://github.com/tinylib/msgp/': Could not resolve host: github.com [ 31s] go: github.com/mattn/[email protected]: unknown revision v1.10.0 [ 31s] go: github.com/steveyen/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/099f28c1faefc527e487740eace89de148bf9b0dfc4f92a11dda94c11107cecf: exit status 128: [ 31s] fatal: unable to access 'https://github.com/steveyen/gtreap/': Could not resolve host: github.com [ 31s] go: gopkg.in/src-d/[email protected]: unrecognized import path "gopkg.in/src-d/go-git.v4" (https fetch: Get https://gopkg.in/src-d/go-git.v4?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:41993->[::1]:53: read: connection refused) [ 31s] go: xorm.io/[email protected]: unrecognized import path "xorm.io/core" (https fetch: Get https://xorm.io/core?go-get=1: dial tcp: lookup xorm.io on [::1]:53: read udp [::1]:48480->[::1]:53: read: connection refused) [ 31s] go: finding github.com/remyoudompheng/bigfft v0.0.0-20190321074620-2f0d2b0e0001 [ 31s] go: finding github.com/couchbase/gomemcached v0.0.0-20181122193126-5125a94a666c [ 31s] go: github.com/glycerine/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/29efc078aecf348b6d3f4ee31dbbd0318b0b751f44c8daf4bf339efb61bc6c6b: exit status 128: [ 31s] fatal: unable to access 'https://github.com/glycerine/go-unsnap-stream/': Could not resolve host: github.com [ 31s] go: finding github.com/gliderlabs/ssh v0.1.4 [ 31s] go: github.com/gorilla/[email protected]: unknown revision v1.1.1 [ 31s] go: finding github.com/issue9/identicon v0.0.0-20160320065130-d36b54562f4c [ 31s] go: github.com/gliderlabs/[email protected]: unknown revision v0.1.4 [ 31s] go: gopkg.in/editorconfig/[email protected]: unrecognized import path "gopkg.in/editorconfig/editorconfig-core-go.v1" (https fetch: Get https://gopkg.in/editorconfig/editorconfig-core-go.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:32817->[::1]:53: read: connection refused) [ 31s] go: github.com/go-macaron/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/aeead2099390dff900c1716127311a54d929271b211a1a60b3e771e7ec86df9e: exit status 128: [ 31s] fatal: unable to access 'https://github.com/go-macaron/i18n/': Could not resolve host: github.com [ 31s] go: mvdan.cc/xurls/[email protected]: unrecognized import path "mvdan.cc/xurls/v2" (https fetch: Get https://mvdan.cc/xurls/v2?go-get=1: dial tcp: lookup mvdan.cc on [::1]:53: read udp [::1]:60712->[::1]:53: read: connection refused) [ 31s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/oauth2" (https fetch: Get https://golang.org/x/oauth2?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:60799->[::1]:53: read: connection refused) [ 31s] go: finding github.com/facebookgo/stats v0.0.0-20151006221625-1b76add642e4 [ 31s] go: finding github.com/chaseadamsio/goorgeous v0.0.0-20170901132237-098da33fde5f [ 31s] go: github.com/remyoudompheng/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/b1d11a64828f2815d188aefad878a02a0f78b25d2e83d15e4ed42747cd35a11f: exit status 128: [ 31s] fatal: unable to access 'https://github.com/remyoudompheng/bigfft/': Could not resolve host: github.com [ 31s] go: finding github.com/mattn/go-isatty v0.0.7 [ 31s] go: finding github.com/blevesearch/blevex v0.0.0-20180227211930-4b158bb555a3 [ 31s] go: github.com/blevesearch/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/248152e6f8c83129a4389ce2b2c372dbd2d0600bfb41d8a4f5f84867db08f243: exit status 128: [ 31s] fatal: unable to access 'https://github.com/blevesearch/bleve/': Could not resolve host: github.com [ 31s] go: github.com/go-macaron/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/8e56d470350321b745e44e55f5eef9aa56b01959f236455de2fb5baf1c0548e3: exit status 128: [ 31s] fatal: unable to access 'https://github.com/go-macaron/session/': Could not resolve host: github.com [ 31s] go: gopkg.in/stretchr/[email protected]: unrecognized import path "gopkg.in/stretchr/testify.v1" (https fetch: Get https://gopkg.in/stretchr/testify.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:49619->[::1]:53: read: connection refused) [ 31s] go: github.com/mattn/[email protected]: unknown revision v0.0.7 [ 31s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/tools" (https fetch: Get https://golang.org/x/tools?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:47397->[::1]:53: read: connection refused) [ 31s] go: finding github.com/gogits/cron v0.0.0-20160810035002-7f3990acf183 [ 31s] go: github.com/go-xorm/[email protected]: unknown revision v0.6.0 [ 31s] go: finding github.com/Unknwon/cae v0.0.0-20160715032808-c6aac99ea2ca [ 31s] go: finding github.com/bradfitz/gomemcache v0.0.0-20160117192205-fb1f79c6b65a [ 31s] go: finding github.com/oliamb/cutter v0.2.2 [ 31s] go: github.com/denisenkom/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/d004f62f0bf917602489d74fdea89c7a3f58cffbf618ef1e4fc751f5d4836311: exit status 128: [ 31s] fatal: unable to access 'https://github.com/denisenkom/go-mssqldb/': Could not resolve host: github.com [ 31s] go: finding github.com/bgentry/speakeasy v0.1.0 [ 31s] go: github.com/oliamb/[email protected]: unknown revision v0.2.2 [ 31s] go: github.com/couchbase/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/5cfded037f8fa0d23092a0cb04a07916c3f29b6a1cf57ed9d1eba574a0b17af5: exit status 128: [ 31s] fatal: unable to access 'https://github.com/couchbase/gomemcached/': Could not resolve host: github.com [ 31s] go: github.com/issue9/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/811abd42c0be6f257a29dbac87f5270fe23cc1fdc95e54ef5a0731f403f9fec9: exit status 128: [ 31s] fatal: unable to access 'https://github.com/issue9/identicon/': Could not resolve host: github.com [ 31s] go: finding github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc [ 31s] go: github.com/bgentry/[email protected]: unknown revision v0.1.0 [ 31s] go: finding github.com/smartystreets/goconvey v0.0.0-20190306220146-200a235640ff [ 31s] go: finding github.com/joho/godotenv v1.3.0 [ 31s] go: github.com/facebookgo/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/75054b1888e7585e2f9c61953cf4ebb366e08350c6d48a352170aace06f08ffc: exit status 128: [ 31s] fatal: unable to access 'https://github.com/facebookgo/stats/': Could not resolve host: github.com [ 31s] go: finding github.com/couchbase/goutils v0.0.0-20180530154633-e865a1461c8a [ 31s] go: finding github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5 [ 31s] go: github.com/blevesearch/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/4099a8e2a605288b985c6745cb247e4b899aafbec7520858f9090af5c66c1d53: exit status 128: [ 31s] fatal: unable to access 'https://github.com/blevesearch/blevex/': Could not resolve host: github.com [ 31s] go: finding github.com/google/go-github/v24 v24.0.1 [ 31s] go: github.com/couchbase/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/03bee7a5d10e33b66506e8ab00ca10a84544ff3c196a39c5866f4733857dc07f: exit status 128: [ 31s] fatal: unable to access 'https://github.com/couchbase/goutils/': Could not resolve host: github.com [ 31s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/net" (https fetch: Get https://golang.org/x/net?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:36428->[::1]:53: read: connection refused) [ 31s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/redis.v2" (https fetch: Get https://gopkg.in/redis.v2?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:56484->[::1]:53: read: connection refused) [ 31s] go: github.com/gogits/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/f697eef11e2eca528454fd1d803889d327276f1a945cb862e3b0cd1f9810063f: exit status 128: [ 31s] fatal: unable to access 'https://github.com/gogits/cron/': Could not resolve host: github.com [ 31s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/bufio.v1" (https fetch: Get https://gopkg.in/bufio.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:34775->[::1]:53: read: connection refused) [ 31s] go: github.com/bradfitz/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/9f0564f3965ded68353f2d411c72f47d2981c4421adc43579100704ff9ef003d: exit status 128: [ 31s] fatal: unable to access 'https://github.com/bradfitz/gomemcache/': Could not resolve host: github.com [ 31s] go: finding github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6 [ 31s] go: github.com/Unknwon/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/f3393d5217a615250db1ece5d3adbfae7c8a699b09d25b6fef1255e6f26f89a2: exit status 128: [ 31s] fatal: unable to access 'https://github.com/Unknwon/cae/': Could not resolve host: github.com [ 31s] go: finding github.com/sergi/go-diff v1.0.0 [ 31s] go: finding github.com/emirpasic/gods v1.12.0 [ 31s] go: finding github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca [ 31s] go: github.com/chaseadamsio/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/a95ae37c0aa6306dc1f3ae2a235e40d1c8538a71da2e2c4141aa82c2da0583e8: exit status 128: [ 31s] fatal: unable to access 'https://github.com/chaseadamsio/goorgeous/': Could not resolve host: github.com [ 31s] go: github.com/joho/[email protected]: unknown revision v1.3.0 [ 31s] go: finding github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d [ 31s] go: github.com/emirpasic/[email protected]: unknown revision v1.12.0 [ 31s] go: finding github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 [ 31s] go: finding github.com/issue9/assert v1.3.2 [ 31s] go: github.com/saintfish/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/34e37a09a286ed0845513bf9381387e98be5749dbfa1fdf66535067a73229fbe: exit status 128: [ 31s] fatal: unable to access 'https://github.com/saintfish/chardet/': Could not resolve host: github.com [ 31s] go: go.etcd.io/[email protected]: unrecognized import path "go.etcd.io/bbolt" (https fetch: Get https://go.etcd.io/bbolt?go-get=1: dial tcp: lookup go.etcd.io on [::1]:53: read udp [::1]:49763->[::1]:53: read: connection refused) [ 31s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/gomail.v2" (https fetch: Get https://gopkg.in/gomail.v2?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:58918->[::1]:53: read: connection refused) [ 31s] go: finding github.com/google/go-cmp v0.3.0 [ 31s] go: github.com/nfnt/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/3c41db3334414b5559791060aadeb7b9a9cd6323146d18c88ea1134dabc06c55: exit status 128: [ 31s] fatal: unable to access 'https://github.com/nfnt/resize/': Could not resolve host: github.com [ 31s] go: github.com/google/go-github/[email protected]: unknown revision v24.0.1 [ 31s] go: finding github.com/keybase/go-crypto v0.0.0-20170605145657-00ac4db533f6 [ 31s] go: finding github.com/mattn/go-oci8 v0.0.0-20190320171441-14ba190cf52d [ 31s] go: github.com/google/[email protected]: unknown revision v0.3.0 [ 31s] go: finding github.com/facebookgo/grace v0.0.0-20160926231715-5729e484473f [ 31s] go: github.com/sergi/[email protected]: unknown revision v1.0.0 [ 31s] go: github.com/klauspost/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/b368b11e6e732d7e81359920dedff5faf0900ced71968d970fd842d78715bd9b: exit status 128: [ 31s] fatal: unable to access 'https://github.com/klauspost/crc32/': Could not resolve host: github.com [ 31s] go: github.com/mattn/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/f6cb81c9c14158141515a42a0d4ba69af922b8a90c7dc4a0abe7b45119241dc1: exit status 128: [ 31s] fatal: unable to access 'https://github.com/mattn/go-oci8/': Could not resolve host: github.com [ 31s] go: finding github.com/russross/blackfriday v0.0.0-20180428102519-11635eb403ff [ 31s] go: finding github.com/PuerkitoBio/goquery v0.0.0-20170324135448-ed7d758e9a34 [ 31s] go: github.com/msteinert/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/c778997adf90534f0e18aedfc548469ab5e307d7463341364a6795a4499c50ff: exit status 128: [ 31s] fatal: unable to access 'https://github.com/msteinert/pam/': Could not resolve host: github.com [ 31s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/macaron.v1" (https fetch: Get https://gopkg.in/macaron.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:39689->[::1]:53: read: connection refused) [ 31s] go: finding github.com/gogits/chardet v0.0.0-20150115103509-2404f7772561 [ 31s] go: github.com/smartystreets/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/1693d9c59c0c1838de53cecb8601eec3084f084265b72c82e78de941f1c8f58c: exit status 128: [ 31s] fatal: unable to access 'https://github.com/smartystreets/goconvey/': Could not resolve host: github.com [ 31s] go: finding github.com/go-sql-driver/mysql v1.4.1 [ 31s] go: finding github.com/go-redis/redis v6.15.2+incompatible [ 31s] go: github.com/issue9/[email protected]: unknown revision v1.3.2 [ 31s] go: finding github.com/philhofer/fwd v1.0.0 [ 31s] go: github.com/PuerkitoBio/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/f321618cd9252a84a0fb61526831581c618488d9546662b78d83c752eaf98089: exit status 128: [ 31s] fatal: unable to access 'https://github.com/PuerkitoBio/goquery/': Could not resolve host: github.com [ 31s] go: github.com/go-sql-driver/[email protected]: unknown revision v1.4.1 [ 31s] go: finding github.com/tstranex/u2f v1.0.0 [ 31s] go: finding github.com/jaytaylor/html2text v0.0.0-20160923191438-8fb95d837f7d [ 31s] go: github.com/tstranex/[email protected]: unknown revision v1.0.0 [ 31s] go: strk.kbt.io/projects/go/[email protected]: unrecognized import path "strk.kbt.io/projects/go/libravatar" (https fetch: Get https://strk.kbt.io/projects/go/libravatar?go-get=1: dial tcp: lookup strk.kbt.io on [::1]:53: read udp [::1]:57333->[::1]:53: read: connection refused) [ 31s] go: github.com/keybase/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/399bb65eebfcf9a3166c8c3e83e2dc232da63a3e602e95e20d1ab61c6916e903: exit status 128: [ 31s] fatal: unable to access 'https://github.com/keybase/go-crypto/': Could not resolve host: github.com [ 31s] go: finding github.com/lunny/levelqueue v0.0.0-20190217115915-02b525a4418e [ 31s] go: finding github.com/satori/go.uuid v1.2.0 [ 31s] go: github.com/russross/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/29135eeac1b671a9c66038ff945c80ef02cc537e9afd417c006541c7be820005: exit status 128: [ 31s] fatal: unable to access 'https://github.com/russross/blackfriday/': Could not resolve host: github.com [ 31s] go: github.com/satori/[email protected]: unknown revision v1.2.0 [ 31s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/crypto" (https fetch: Get https://golang.org/x/crypto?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:51473->[::1]:53: read: connection refused) [ 31s] go: github.com/siddontang/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/72810791e48f271eed00c0840163a50451db9ceb7058559a97fa44eb756ca3a8: exit status 128: [ 31s] fatal: unable to access 'https://github.com/siddontang/go-snappy/': Could not resolve host: github.com [ 31s] go: github.com/cznic/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/86983ef63bda0a8343b9bd5bdb5f547b977fbafdd67df63fdb251226bb83a071: exit status 128: [ 31s] fatal: unable to access 'https://github.com/cznic/mathutil/': Could not resolve host: github.com [ 31s] go: github.com/go-redis/[email protected]+incompatible: unknown revision v6.15.2 [ 31s] go: github.com/philhofer/[email protected]: unknown revision v1.0.0 [ 31s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/sys" (https fetch: Get https://golang.org/x/sys?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:48481->[::1]:53: read: connection refused) [ 31s] go: finding github.com/microcosm-cc/bluemonday v0.0.0-20161012083705-f77f16ffc87a [ 31s] go: finding github.com/go-xorm/xorm v0.7.3-0.20190620151208-f1b4f8368459 [ 31s] go: finding github.com/go-macaron/captcha v0.0.0-20190710000913-8dc5911259df [ 31s] go: github.com/gogits/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/eecf4c0aaa6f40fccddc6c40a35660b44d9ea08f181c8a61ea8d71b494628749: exit status 128: [ 31s] fatal: unable to access 'https://github.com/gogits/chardet/': Could not resolve host: github.com [ 31s] go: finding github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75 [ 31s] go: finding github.com/klauspost/compress v0.0.0-20161025140425-8df558b6cb6f [ 31s] go: finding github.com/yohcop/openid-go v0.0.0-20160914080427-2c050d2dae53 [ 31s] go: finding github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae [ 31s] go: github.com/facebookgo/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/6b7cb62a169e95ab56166da71b41ddf490381bed25482ff5a7c453fdab1afa06: exit status 128: [ 31s] fatal: unable to access 'https://github.com/facebookgo/grace/': Could not resolve host: github.com [ 31s] go: github.com/jaytaylor/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/63d2360eeeff3fdc968db66bc36422fce6fbebcbd44a187629ab5f1b45635217: exit status 128: [ 31s] fatal: unable to access 'https://github.com/jaytaylor/html2text/': Could not resolve host: github.com [ 31s] go: finding github.com/couchbaselabs/go-couchbase v0.0.0-20190117181324-d904413d884d [ 31s] go: github.com/go-xorm/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/1af700a09687feb09755a8d86a1ebf94c891f05c64201e6f9dc687798ece2ec3: exit status 128: [ 31s] fatal: unable to access 'https://github.com/go-xorm/xorm/': Could not resolve host: github.com [ 31s] go: finding github.com/shurcooL/sanitized_anchor_name v0.0.0-20160918041101-1dba4b3954bc [ 31s] go: github.com/lunny/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/1e05c64c4998c929bccb7b6488c35d56468ad8f12df84ae3c43c015696edaa2d: exit status 128: [ 31s] fatal: unable to access 'https://github.com/lunny/levelqueue/': Could not resolve host: github.com [ 31s] go: finding github.com/andybalholm/cascadia v0.0.0-20161224141413-349dd0209470 [ 31s] go: finding github.com/blevesearch/go-porterstemmer v0.0.0-20141230013033-23a2c8e5cf1f [ 32s] go: github.com/shurcooL/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/76c2951a1319a997cd8e8a30458383d1d32a6ff84eeca11610f09db33a517db9: exit status 128: [ 32s] fatal: unable to access 'https://github.com/shurcooL/sanitized_anchor_name/': Could not resolve host: github.com [ 32s] go: github.com/andybalholm/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/d6269b42d75e2b8569f8020c6621ae67127aad2eab11d7866b511e7a032a9825: exit status 128: [ 32s] fatal: unable to access 'https://github.com/andybalholm/cascadia/': Could not resolve host: github.com [ 32s] go: xorm.io/[email protected]: unrecognized import path "xorm.io/builder" (https fetch: Get https://xorm.io/builder?go-get=1: dial tcp: lookup xorm.io on [::1]:53: read udp [::1]:41106->[::1]:53: read: connection refused) [ 32s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/testfixtures.v2" (https fetch: Get https://gopkg.in/testfixtures.v2?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:39931->[::1]:53: read: connection refused) [ 32s] go: github.com/blevesearch/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/975ac9e19d14568792095447225db27569f76a58ad0a6b7034e703975a774fc1: exit status 128: [ 32s] fatal: unable to access 'https://github.com/blevesearch/go-porterstemmer/': Could not resolve host: github.com [ 32s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/ldap.v3" (https fetch: Get https://gopkg.in/ldap.v3?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:46442->[::1]:53: read: connection refused) [ 32s] go: finding github.com/stretchr/testify v1.3.0 [ 32s] go: finding github.com/lib/pq v1.1.0 [ 32s] go: finding github.com/go-macaron/toolbox v0.0.0-20180818072302-a77f45a7ce90 [ 32s] go: github.com/stretchr/[email protected]: unknown revision v1.3.0 [ 32s] go: github.com/lib/[email protected]: unknown revision v1.1.0 [ 32s] go: finding github.com/klauspost/cpuid v0.0.0-20160302075316-09cded8978dc [ 32s] go: finding github.com/prometheus/client_golang v0.9.3 [ 32s] go: github.com/mcuadros/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/388026146b08e02255e23f3638639b4ee260b18b43b7680b404c7a0a3ff79215: exit status 128: [ 32s] fatal: unable to access 'https://github.com/mcuadros/go-version/': Could not resolve host: github.com [ 32s] go: github.com/klauspost/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/5180178edc4187a3cee47e53fadeab1d44743eb805668aa1bbc18a0377ce8080: exit status 128: [ 32s] fatal: unable to access 'https://github.com/klauspost/compress/': Could not resolve host: github.com [ 32s] go: github.com/microcosm-cc/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/b7e257f3daff1b94f2065917db4d2504e37708bb712223e30d10d82572244113: exit status 128: [ 32s] fatal: unable to access 'https://github.com/microcosm-cc/bluemonday/': Could not resolve host: github.com [ 32s] go: finding github.com/Unknwon/paginater v0.0.0-20151104151617-7748a72e0141 [ 32s] go: github.com/mschoch/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/95491a4718b97b45ae0c5200a77ac9e09ec18978c247e81d8a213bdaa212c518: exit status 128: [ 32s] fatal: unable to access 'https://github.com/mschoch/smat/': Could not resolve host: github.com [ 32s] go: finding github.com/tecbot/gorocksdb v0.0.0-20181010114359-8752a9433481 [ 32s] go: github.com/couchbaselabs/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/2d47292f2004cbf5d3e51786b9fc8efc550c0abd3572f4c1e9c13bd6fcbef836: exit status 128: [ 32s] fatal: unable to access 'https://github.com/couchbaselabs/go-couchbase/': Could not resolve host: github.com [ 32s] go: github.com/klauspost/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/db4bd42d1f2ce9cdd71cbb1b3eb2fea9662f669206e508e2f0dcb7706a2f3895: exit status 128: [ 32s] fatal: unable to access 'https://github.com/klauspost/cpuid/': Could not resolve host: github.com [ 32s] go: finding github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de [ 32s] go: finding github.com/urfave/cli v1.20.0 [ 32s] go: finding github.com/BurntSushi/toml v0.3.1 [ 32s] go: finding github.com/jmhodges/levigo v1.0.0 [ 32s] go: github.com/urfave/[email protected]: unknown revision v1.20.0 [ 32s] go: github.com/go-macaron/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/654f202a74ee764cd36dedf4f63976a8254e7a1ca5f52991e6cd96e9eb6a2bf2: exit status 128: [ 32s] fatal: unable to access 'https://github.com/go-macaron/captcha/': Could not resolve host: github.com [ 32s] go: github.com/yohcop/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/ee5ecc51a1a22ce7170f472e31c570b6a967cd11846100e9f727ba52502a4615: exit status 128: [ 32s] fatal: unable to access 'https://github.com/yohcop/openid-go/': Could not resolve host: github.com [ 32s] go: github.com/BurntSushi/[email protected]: unknown revision v0.3.1 [ 32s] go: github.com/jmhodges/[email protected]: unknown revision v1.0.0 [ 32s] go: github.com/prometheus/[email protected]: unknown revision v0.9.3 [ 32s] go: github.com/go-macaron/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/30ccac9e0040eb08395c2366a6b07ee8283921f93b6eefceb685bee5b7a141c3: exit status 128: [ 32s] fatal: unable to access 'https://github.com/go-macaron/toolbox/': Could not resolve host: github.com [ 32s] go: github.com/Unknwon/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/03262f6aef34f3958bd9eb7a8a1e5dcc6712996e5c5cfff18ee00b99bd87256c: exit status 128: [ 32s] fatal: unable to access 'https://github.com/Unknwon/paginater/': Could not resolve host: github.com [ 32s] go: github.com/tecbot/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/aeed515c80a369e870411bc2e2299d584eba8d6b0bc82cea94d2d2341fc0642c: exit status 128: [ 32s] fatal: unable to access 'https://github.com/tecbot/gorocksdb/': Could not resolve host: github.com [ 32s] go: github.com/lunny/[email protected]: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/a6e5674b2eca55c15ed3f9cc1a8314df7ea94e00d6760c47214bb77cbb4bfca7: exit status 128: [ 32s] fatal: unable to access 'https://github.com/lunny/log/': Could not resolve host: github.com [ 32s] go: error loading module requirements [ 32s] modules/public/public.go:21: running "go": exit status 1 [ 32s] modules/options/dynamic.go [ 32s] modules/options/options.go [ 33s] writing bindata.go [ 33s] go: finding github.com/joho/godotenv v1.3.0 [ 33s] go: finding github.com/Unknwon/com v0.0.0-20190321035513-0fed4efef755 [ 33s] go: finding github.com/issue9/identicon v0.0.0-20160320065130-d36b54562f4c [ 33s] go: go.etcd.io/[email protected]: unrecognized import path "go.etcd.io/bbolt" (https fetch: Get https://go.etcd.io/bbolt?go-get=1: dial tcp: lookup go.etcd.io on [::1]:53: read udp [::1]:57314->[::1]:53: read: connection refused) [ 33s] go: finding github.com/andybalholm/cascadia v0.0.0-20161224141413-349dd0209470 [ 33s] go: finding github.com/microcosm-cc/bluemonday v0.0.0-20161012083705-f77f16ffc87a [ 33s] go: xorm.io/[email protected]: unrecognized import path "xorm.io/builder" (https fetch: Get https://xorm.io/builder?go-get=1: dial tcp: lookup xorm.io on [::1]:53: read udp [::1]:40484->[::1]:53: read: connection refused) [ 33s] go: finding github.com/jaytaylor/html2text v0.0.0-20160923191438-8fb95d837f7d [ 33s] go: finding github.com/go-sql-driver/mysql v1.4.1 [ 33s] go: finding github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2 [ 33s] go: finding github.com/go-macaron/csrf v0.0.0-20180426211211-503617c6b372 [ 33s] go: finding github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5 [ 33s] go: github.com/joho/[email protected]: unknown revision v1.3.0 [ 33s] go: finding github.com/tecbot/gorocksdb v0.0.0-20181010114359-8752a9433481 [ 33s] go: github.com/go-sql-driver/[email protected]: unknown revision v1.4.1 [ 33s] go: finding github.com/smartystreets/goconvey v0.0.0-20190306220146-200a235640ff [ 33s] go: github.com/jaytaylor/[email protected]: git fetch -f https://github.com/jaytaylor/html2text refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/63d2360eeeff3fdc968db66bc36422fce6fbebcbd44a187629ab5f1b45635217: exit status 128: [ 33s] fatal: unable to access 'https://github.com/jaytaylor/html2text/': Could not resolve host: github.com [ 33s] go: gopkg.in/src-d/[email protected]: unrecognized import path "gopkg.in/src-d/go-git.v4" (https fetch: Get https://gopkg.in/src-d/go-git.v4?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:50243->[::1]:53: read: connection refused) [ 33s] go: finding github.com/Unknwon/cae v0.0.0-20160715032808-c6aac99ea2ca [ 33s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/csrf refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/a0096764fd16bb8f89cb3fcf4330f1a5207887b7ba6ca4ed453da09e907df9a1: exit status 128: [ 33s] fatal: unable to access 'https://github.com/go-macaron/csrf/': Could not resolve host: github.com [ 33s] go: finding github.com/keybase/go-crypto v0.0.0-20170605145657-00ac4db533f6 [ 33s] go: github.com/keybase/[email protected]: git fetch -f https://github.com/keybase/go-crypto refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/399bb65eebfcf9a3166c8c3e83e2dc232da63a3e602e95e20d1ab61c6916e903: exit status 128: [ 33s] fatal: unable to access 'https://github.com/keybase/go-crypto/': Could not resolve host: github.com [ 33s] go: finding github.com/yohcop/openid-go v0.0.0-20160914080427-2c050d2dae53 [ 33s] go: github.com/issue9/[email protected]: git fetch -f https://github.com/issue9/identicon refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/811abd42c0be6f257a29dbac87f5270fe23cc1fdc95e54ef5a0731f403f9fec9: exit status 128: [ 33s] fatal: unable to access 'https://github.com/issue9/identicon/': Could not resolve host: github.com [ 33s] go: finding github.com/facebookgo/stats v0.0.0-20151006221625-1b76add642e4 [ 33s] go: github.com/Unknwon/[email protected]: git fetch -f https://github.com/Unknwon/com refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/2f84e189d78fdca572fb571267858b24f0c3b35a15e1ebcd4675deadc43a4c54: exit status 128: [ 33s] fatal: unable to access 'https://github.com/Unknwon/com/': Could not resolve host: github.com [ 33s] go: finding github.com/google/go-cmp v0.3.0 [ 33s] go: github.com/andybalholm/[email protected]: git fetch -f https://github.com/andybalholm/cascadia refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/d6269b42d75e2b8569f8020c6621ae67127aad2eab11d7866b511e7a032a9825: exit status 128: [ 33s] fatal: unable to access 'https://github.com/andybalholm/cascadia/': Could not resolve host: github.com [ 33s] go: github.com/microcosm-cc/[email protected]: git fetch -f https://github.com/microcosm-cc/bluemonday refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/b7e257f3daff1b94f2065917db4d2504e37708bb712223e30d10d82572244113: exit status 128: [ 33s] fatal: unable to access 'https://github.com/microcosm-cc/bluemonday/': Could not resolve host: github.com [ 33s] go: finding github.com/gliderlabs/ssh v0.1.4 [ 33s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/gomail.v2" (https fetch: Get https://gopkg.in/gomail.v2?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:60736->[::1]:53: read: connection refused) [ 33s] go: finding github.com/edsrzf/mmap-go v0.0.0-20170320065105-0bce6a688712 [ 33s] go: github.com/steveyen/[email protected]: git fetch -f https://github.com/steveyen/gtreap refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/099f28c1faefc527e487740eace89de148bf9b0dfc4f92a11dda94c11107cecf: exit status 128: [ 33s] fatal: unable to access 'https://github.com/steveyen/gtreap/': Could not resolve host: github.com [ 33s] go: finding github.com/go-macaron/cors v0.0.0-20190309005821-6fd6a9bfe14e9 [ 33s] go: github.com/google/[email protected]: unknown revision v0.3.0 [ 33s] go: finding github.com/RoaringBitmap/roaring v0.4.7 [ 33s] go: github.com/tecbot/[email protected]: git fetch -f https://github.com/tecbot/gorocksdb refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/aeed515c80a369e870411bc2e2299d584eba8d6b0bc82cea94d2d2341fc0642c: exit status 128: [ 33s] fatal: unable to access 'https://github.com/tecbot/gorocksdb/': Could not resolve host: github.com [ 33s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/testfixtures.v2" (https fetch: Get https://gopkg.in/testfixtures.v2?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:58687->[::1]:53: read: connection refused) [ 33s] go: finding github.com/philhofer/fwd v1.0.0 [ 33s] go: github.com/philhofer/[email protected]: unknown revision v1.0.0 [ 33s] go: github.com/RoaringBitmap/[email protected]: unknown revision v0.4.7 [ 33s] go: finding github.com/go-macaron/i18n v0.0.0-20160612092837-ef57533c3b0f [ 33s] go: finding github.com/markbates/goth v1.49.0 [ 33s] go: github.com/markbates/[email protected]: unknown revision v1.49.0 [ 33s] go: finding github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75 [ 33s] go: github.com/yohcop/[email protected]: git fetch -f https://github.com/yohcop/openid-go refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/ee5ecc51a1a22ce7170f472e31c570b6a967cd11846100e9f727ba52502a4615: exit status 128: [ 33s] fatal: unable to access 'https://github.com/yohcop/openid-go/': Could not resolve host: github.com [ 33s] go: finding github.com/mattn/go-oci8 v0.0.0-20190320171441-14ba190cf52d [ 33s] go: github.com/nfnt/[email protected]: git fetch -f https://github.com/nfnt/resize refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/3c41db3334414b5559791060aadeb7b9a9cd6323146d18c88ea1134dabc06c55: exit status 128: [ 33s] fatal: unable to access 'https://github.com/nfnt/resize/': Could not resolve host: github.com [ 33s] go: finding github.com/lunny/levelqueue v0.0.0-20190217115915-02b525a4418e [ 33s] go: github.com/mcuadros/[email protected]: git fetch -f https://github.com/mcuadros/go-version refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/388026146b08e02255e23f3638639b4ee260b18b43b7680b404c7a0a3ff79215: exit status 128: [ 33s] fatal: unable to access 'https://github.com/mcuadros/go-version/': Could not resolve host: github.com [ 33s] go: gopkg.in/stretchr/[email protected]: unrecognized import path "gopkg.in/stretchr/testify.v1" (https fetch: Get https://gopkg.in/stretchr/testify.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:37595->[::1]:53: read: connection refused) [ 33s] go: finding github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd [ 33s] go: github.com/gliderlabs/[email protected]: unknown revision v0.1.4 [ 33s] go: finding github.com/jmhodges/levigo v1.0.0 [ 33s] go: github.com/smartystreets/[email protected]: git fetch -f https://github.com/smartystreets/goconvey refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/1693d9c59c0c1838de53cecb8601eec3084f084265b72c82e78de941f1c8f58c: exit status 128: [ 33s] fatal: unable to access 'https://github.com/smartystreets/goconvey/': Could not resolve host: github.com [ 33s] go: finding github.com/tinylib/msgp v0.0.0-20180516164116-c8cf64dff200 [ 33s] go: github.com/jmhodges/[email protected]: unknown revision v1.0.0 [ 33s] go: finding github.com/blevesearch/go-porterstemmer v0.0.0-20141230013033-23a2c8e5cf1f [ 33s] go: github.com/Unknwon/[email protected]: git fetch -f https://github.com/Unknwon/cae refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/f3393d5217a615250db1ece5d3adbfae7c8a699b09d25b6fef1255e6f26f89a2: exit status 128: [ 33s] fatal: unable to access 'https://github.com/Unknwon/cae/': Could not resolve host: github.com [ 33s] go: finding github.com/bradfitz/gomemcache v0.0.0-20160117192205-fb1f79c6b65a [ 33s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/i18n refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/aeead2099390dff900c1716127311a54d929271b211a1a60b3e771e7ec86df9e: exit status 128: [ 33s] fatal: unable to access 'https://github.com/go-macaron/i18n/': Could not resolve host: github.com [ 33s] go: finding github.com/denisenkom/go-mssqldb v0.0.0-20180315180555-6a30f4e59a44 [ 33s] go: github.com/mattn/[email protected]: git fetch -f https://github.com/mattn/go-oci8 refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/f6cb81c9c14158141515a42a0d4ba69af922b8a90c7dc4a0abe7b45119241dc1: exit status 128: [ 33s] fatal: unable to access 'https://github.com/mattn/go-oci8/': Could not resolve host: github.com [ 33s] go: finding github.com/gorilla/context v1.1.1 [ 33s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/stats refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/75054b1888e7585e2f9c61953cf4ebb366e08350c6d48a352170aace06f08ffc: exit status 128: [ 33s] fatal: unable to access 'https://github.com/facebookgo/stats/': Could not resolve host: github.com [ 33s] go: github.com/lunny/[email protected]: git fetch -f https://github.com/lunny/levelqueue refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/1e05c64c4998c929bccb7b6488c35d56468ad8f12df84ae3c43c015696edaa2d: exit status 128: [ 33s] fatal: unable to access 'https://github.com/lunny/levelqueue/': Could not resolve host: github.com [ 33s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/crypto" (https fetch: Get https://golang.org/x/crypto?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:40943->[::1]:53: read: connection refused) [ 33s] go: finding github.com/russross/blackfriday v0.0.0-20180428102519-11635eb403ff [ 33s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/net" (https fetch: Get https://golang.org/x/net?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:37425->[::1]:53: read: connection refused) [ 33s] go: finding github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 [ 33s] go: github.com/gorilla/[email protected]: unknown revision v1.1.1 [ 33s] go: finding github.com/cznic/strutil v0.0.0-20181122101858-275e90344537 [ 33s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/cors refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/6a8d5018567175d43fe28f2da01072e0fc2f55c86d3d128d2f305066a72bedbf: exit status 128: [ 33s] fatal: unable to access 'https://github.com/go-macaron/cors/': Could not resolve host: github.com [ 33s] go: github.com/shurcooL/[email protected]: git fetch -f https://github.com/shurcooL/vfsgen refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/eedfa8cac7090a1b71f292f1b6aaecec26438ab750c340c01cbf92820ce7a263: exit status 128: [ 33s] fatal: unable to access 'https://github.com/shurcooL/vfsgen/': Could not resolve host: github.com [ 33s] go: finding github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae [ 33s] go: finding github.com/go-redis/redis v6.15.2+incompatible [ 33s] go: github.com/edsrzf/[email protected]: git fetch -f https://github.com/edsrzf/mmap-go refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/361aa085490f47a0ce0bd5ce581ece7b9ce0e1c390b4389ad7c5771098235fd3: exit status 128: [ 33s] fatal: unable to access 'https://github.com/edsrzf/mmap-go/': Could not resolve host: github.com [ 33s] go: finding github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de [ 33s] go: github.com/tinylib/[email protected]: git fetch -f https://github.com/tinylib/msgp refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/9a3d10e611f6412589d884667e8073aa31e525ccd368ee5a32cdfc182b06c5fe: exit status 128: [ 33s] fatal: unable to access 'https://github.com/tinylib/msgp/': Could not resolve host: github.com [ 33s] go: finding github.com/urfave/cli v1.20.0 [ 33s] go: github.com/go-redis/[email protected]+incompatible: unknown revision v6.15.2 [ 33s] go: finding github.com/blevesearch/bleve v0.0.0-20190214220507-05d86ea8f6e3 [ 33s] go: github.com/russross/[email protected]: git fetch -f https://github.com/russross/blackfriday refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/29135eeac1b671a9c66038ff945c80ef02cc537e9afd417c006541c7be820005: exit status 128: [ 33s] fatal: unable to access 'https://github.com/russross/blackfriday/': Could not resolve host: github.com [ 33s] go: finding github.com/couchbase/goutils v0.0.0-20180530154633-e865a1461c8a [ 33s] go: github.com/mschoch/[email protected]: git fetch -f https://github.com/mschoch/smat refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/95491a4718b97b45ae0c5200a77ac9e09ec18978c247e81d8a213bdaa212c518: exit status 128: [ 33s] fatal: unable to access 'https://github.com/mschoch/smat/': Could not resolve host: github.com [ 33s] go: finding github.com/go-macaron/toolbox v0.0.0-20180818072302-a77f45a7ce90 [ 33s] go: github.com/blevesearch/[email protected]: git fetch -f https://github.com/blevesearch/go-porterstemmer refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/975ac9e19d14568792095447225db27569f76a58ad0a6b7034e703975a774fc1: exit status 128: [ 33s] fatal: unable to access 'https://github.com/blevesearch/go-porterstemmer/': Could not resolve host: github.com [ 33s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/sys" (https fetch: Get https://golang.org/x/sys?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:34950->[::1]:53: read: connection refused) [ 33s] go: gopkg.in/alexcesaro/[email protected]: unrecognized import path "gopkg.in/alexcesaro/quotedprintable.v3" (https fetch: Get https://gopkg.in/alexcesaro/quotedprintable.v3?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:58818->[::1]:53: read: connection refused) [ 33s] go: finding github.com/mattn/go-sqlite3 v1.10.0 [ 33s] go: github.com/bradfitz/[email protected]: git fetch -f https://github.com/bradfitz/gomemcache refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/9f0564f3965ded68353f2d411c72f47d2981c4421adc43579100704ff9ef003d: exit status 128: [ 33s] fatal: unable to access 'https://github.com/bradfitz/gomemcache/': Could not resolve host: github.com [ 33s] go: finding github.com/gogits/chardet v0.0.0-20150115103509-2404f7772561 [ 33s] go: github.com/urfave/[email protected]: unknown revision v1.20.0 [ 33s] go: finding github.com/satori/go.uuid v1.2.0 [ 33s] go: github.com/couchbase/[email protected]: git fetch -f https://github.com/couchbase/goutils refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/03bee7a5d10e33b66506e8ab00ca10a84544ff3c196a39c5866f4733857dc07f: exit status 128: [ 33s] fatal: unable to access 'https://github.com/couchbase/goutils/': Could not resolve host: github.com [ 33s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/asn1-ber.v1" (https fetch: Get https://gopkg.in/asn1-ber.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:43434->[::1]:53: read: connection refused) [ 33s] go: finding github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af [ 33s] go: github.com/gogits/[email protected]: git fetch -f https://github.com/gogits/chardet refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/eecf4c0aaa6f40fccddc6c40a35660b44d9ea08f181c8a61ea8d71b494628749: exit status 128: [ 33s] fatal: unable to access 'https://github.com/gogits/chardet/': Could not resolve host: github.com [ 33s] go: finding github.com/go-macaron/captcha v0.0.0-20190710000913-8dc5911259df [ 33s] go: github.com/denisenkom/[email protected]: git fetch -f https://github.com/denisenkom/go-mssqldb refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/d004f62f0bf917602489d74fdea89c7a3f58cffbf618ef1e4fc751f5d4836311: exit status 128: [ 33s] fatal: unable to access 'https://github.com/denisenkom/go-mssqldb/': Could not resolve host: github.com [ 33s] go: finding github.com/klauspost/cpuid v0.0.0-20160302075316-09cded8978dc [ 33s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/captcha refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/654f202a74ee764cd36dedf4f63976a8254e7a1ca5f52991e6cd96e9eb6a2bf2: exit status 128: [ 33s] fatal: unable to access 'https://github.com/go-macaron/captcha/': Could not resolve host: github.com [ 33s] go: finding github.com/blevesearch/blevex v0.0.0-20180227211930-4b158bb555a3 [ 33s] go: github.com/cznic/[email protected]: git fetch -f https://github.com/cznic/strutil refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/2e5370d753e53ed7ceb996fbc96996c174feed8a2998c07ff14315cf311b3523: exit status 128: [ 33s] fatal: unable to access 'https://github.com/cznic/strutil/': Could not resolve host: github.com [ 33s] go: finding github.com/etcd-io/bbolt v1.3.2 [ 33s] go: github.com/etcd-io/[email protected]: unknown revision v1.3.2 [ 33s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/bufio.v1" (https fetch: Get https://gopkg.in/bufio.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:36033->[::1]:53: read: connection refused) [ 33s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/text" (https fetch: Get https://golang.org/x/text?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:35708->[::1]:53: read: connection refused) [ 33s] go: github.com/mattn/[email protected]: unknown revision v1.10.0 [ 33s] go: finding github.com/stretchr/testify v1.3.0 [ 33s] go: finding github.com/facebookgo/freeport v0.0.0-20150612182905-d4adf43b75b9 [ 33s] go: github.com/satori/[email protected]: unknown revision v1.2.0 [ 33s] go: finding github.com/emirpasic/gods v1.12.0 [ 33s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/toolbox refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/30ccac9e0040eb08395c2366a6b07ee8283921f93b6eefceb685bee5b7a141c3: exit status 128: [ 33s] fatal: unable to access 'https://github.com/go-macaron/toolbox/': Could not resolve host: github.com [ 33s] go: finding github.com/bgentry/speakeasy v0.1.0 [ 33s] go: github.com/lunny/[email protected]: git fetch -f https://github.com/lunny/nodb refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7177d7eb5f1127babfd5fd00dc40c957fcf06d5cc7cfd8facda26b1d174276c6: exit status 128: [ 33s] fatal: unable to access 'https://github.com/lunny/nodb/': Could not resolve host: github.com [ 33s] go: xorm.io/[email protected]: unrecognized import path "xorm.io/core" (https fetch: Get https://xorm.io/core?go-get=1: dial tcp: lookup xorm.io on [::1]:53: read udp [::1]:42917->[::1]:53: read: connection refused) [ 33s] go: finding github.com/glycerine/goconvey v0.0.0-20190315024820-982ee783a72e [ 33s] go: github.com/klauspost/[email protected]: git fetch -f https://github.com/klauspost/cpuid refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/db4bd42d1f2ce9cdd71cbb1b3eb2fea9662f669206e508e2f0dcb7706a2f3895: exit status 128: [ 33s] fatal: unable to access 'https://github.com/klauspost/cpuid/': Could not resolve host: github.com [ 33s] go: finding github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d [ 33s] go: github.com/cznic/[email protected]: git fetch -f https://github.com/cznic/mathutil refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/86983ef63bda0a8343b9bd5bdb5f547b977fbafdd67df63fdb251226bb83a071: exit status 128: [ 33s] fatal: unable to access 'https://github.com/cznic/mathutil/': Could not resolve host: github.com [ 33s] go: finding github.com/tstranex/u2f v1.0.0 [ 33s] go: github.com/glycerine/[email protected]: git fetch -f https://github.com/glycerine/goconvey refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/0a88f7134bef26070c5f5c11f6205fa328fdb1e0f639a7348a75a9e5f3262c26: exit status 128: [ 33s] fatal: unable to access 'https://github.com/glycerine/goconvey/': Could not resolve host: github.com [ 33s] go: finding github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51 [ 33s] go: github.com/lunny/[email protected]: git fetch -f https://github.com/lunny/log refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/a6e5674b2eca55c15ed3f9cc1a8314df7ea94e00d6760c47214bb77cbb4bfca7: exit status 128: [ 33s] fatal: unable to access 'https://github.com/lunny/log/': Could not resolve host: github.com [ 33s] go: finding github.com/facebookgo/grace v0.0.0-20160926231715-5729e484473f [ 33s] go: github.com/blevesearch/[email protected]: git fetch -f https://github.com/blevesearch/bleve refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/248152e6f8c83129a4389ce2b2c372dbd2d0600bfb41d8a4f5f84867db08f243: exit status 128: [ 33s] fatal: unable to access 'https://github.com/blevesearch/bleve/': Could not resolve host: github.com [ 33s] go: finding github.com/go-xorm/xorm v0.7.3-0.20190620151208-f1b4f8368459 [ 33s] go: github.com/stretchr/[email protected]: unknown revision v1.3.0 [ 33s] go: finding github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 [ 33s] go: github.com/bgentry/[email protected]: unknown revision v0.1.0 [ 33s] go: finding github.com/remyoudompheng/bigfft v0.0.0-20190321074620-2f0d2b0e0001 [ 33s] go: github.com/emirpasic/[email protected]: unknown revision v1.12.0 [ 33s] go: finding github.com/gogits/cron v0.0.0-20160810035002-7f3990acf183 [ 33s] go: github.com/remyoudompheng/[email protected]: git fetch -f https://github.com/remyoudompheng/bigfft refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/b1d11a64828f2815d188aefad878a02a0f78b25d2e83d15e4ed42747cd35a11f: exit status 128: [ 33s] fatal: unable to access 'https://github.com/remyoudompheng/bigfft/': Could not resolve host: github.com [ 33s] go: finding github.com/go-macaron/session v0.0.0-20190131233854-0a0a789bf193 [ 33s] go: github.com/cznic/[email protected]: git fetch -f https://github.com/cznic/b refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/0c40695ad575ff92f63ee8a0033b51eaa8b373f37943b7cb0cda9172b771467a: exit status 128: [ 33s] fatal: unable to access 'https://github.com/cznic/b/': Could not resolve host: github.com [ 33s] go: finding github.com/issue9/assert v1.3.2 [ 33s] go: github.com/tstranex/[email protected]: unknown revision v1.0.0 [ 33s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/tools" (https fetch: Get https://golang.org/x/tools?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:51216->[::1]:53: read: connection refused) [ 33s] go: finding github.com/mattn/go-isatty v0.0.7 [ 33s] go: github.com/blevesearch/[email protected]: git fetch -f https://github.com/blevesearch/blevex refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/4099a8e2a605288b985c6745cb247e4b899aafbec7520858f9090af5c66c1d53: exit status 128: [ 33s] fatal: unable to access 'https://github.com/blevesearch/blevex/': Could not resolve host: github.com [ 33s] go: finding github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a [ 33s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/freeport refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/88fe2634ac2833be2a40021e94bde30974bfd2a0a4c98a4ede5a01024fba31d6: exit status 128: [ 33s] fatal: unable to access 'https://github.com/facebookgo/freeport/': Could not resolve host: github.com [ 33s] go: finding github.com/willf/bitset v0.0.0-20180426185212-8ce1146b8621 [ 33s] go: github.com/go-xorm/[email protected]: git fetch -f https://github.com/go-xorm/xorm refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/1af700a09687feb09755a8d86a1ebf94c891f05c64201e6f9dc687798ece2ec3: exit status 128: [ 33s] fatal: unable to access 'https://github.com/go-xorm/xorm/': Could not resolve host: github.com [ 33s] go: finding github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657 [ 33s] go: github.com/ethantkoenig/[email protected]: git fetch -f https://github.com/ethantkoenig/rupture refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/693b31e2b22badca7e13d31fa26f379d0b7d67737fff4549bd839a3a01126327: exit status 128: [ 33s] fatal: unable to access 'https://github.com/ethantkoenig/rupture/': Could not resolve host: github.com [ 33s] go: finding github.com/oliamb/cutter v0.2.2 [ 33s] go: github.com/issue9/[email protected]: unknown revision v1.3.2 [ 33s] go: finding github.com/BurntSushi/toml v0.3.1 [ 33s] go: github.com/mattn/[email protected]: unknown revision v0.0.7 [ 33s] go: finding github.com/blevesearch/segment v0.0.0-20160105220820-db70c57796cc [ 33s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/grace refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/6b7cb62a169e95ab56166da71b41ddf490381bed25482ff5a7c453fdab1afa06: exit status 128: [ 33s] fatal: unable to access 'https://github.com/facebookgo/grace/': Could not resolve host: github.com [ 33s] go: finding github.com/lafriks/xormstore v1.0.0 [ 33s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/ensure refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/9c49f85b4dc7447a298fe77680f330e3491de9b995c65a4f9a61b4715bfb489f: exit status 128: [ 33s] fatal: unable to access 'https://github.com/facebookgo/ensure/': Could not resolve host: github.com [ 33s] go: finding github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d [ 33s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/stack refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7a08904f7ca7b725118fad54f797bae46ea42d6399918c84e4559f43f6e33566: exit status 128: [ 33s] fatal: unable to access 'https://github.com/facebookgo/stack/': Could not resolve host: github.com [ 33s] go: finding github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a [ 33s] go: github.com/gogits/[email protected]: git fetch -f https://github.com/gogits/cron refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/f697eef11e2eca528454fd1d803889d327276f1a945cb862e3b0cd1f9810063f: exit status 128: [ 33s] fatal: unable to access 'https://github.com/gogits/cron/': Could not resolve host: github.com [ 33s] go: finding github.com/couchbase/gomemcached v0.0.0-20181122193126-5125a94a666c [ 33s] go: github.com/oliamb/[email protected]: unknown revision v0.2.2 [ 33s] go: finding github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96 [ 33s] go: github.com/willf/[email protected]: git fetch -f https://github.com/willf/bitset refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/5e0c047f55b1c6a1f7f223d97771ad92e6f79f9f2e3e921bdf122353fc2a0212: exit status 128: [ 33s] fatal: unable to access 'https://github.com/willf/bitset/': Could not resolve host: github.com [ 33s] go: finding github.com/go-macaron/cache v0.0.0-20151013081102-561735312776 [ 33s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/session refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/8e56d470350321b745e44e55f5eef9aa56b01959f236455de2fb5baf1c0548e3: exit status 128: [ 33s] fatal: unable to access 'https://github.com/go-macaron/session/': Could not resolve host: github.com [ 33s] go: finding github.com/couchbaselabs/go-couchbase v0.0.0-20190117181324-d904413d884d [ 33s] go: github.com/couchbase/[email protected]: git fetch -f https://github.com/couchbase/gomemcached refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/5cfded037f8fa0d23092a0cb04a07916c3f29b6a1cf57ed9d1eba574a0b17af5: exit status 128: [ 33s] fatal: unable to access 'https://github.com/couchbase/gomemcached/': Could not resolve host: github.com [ 33s] go: finding github.com/klauspost/compress v0.0.0-20161025140425-8df558b6cb6f [ 33s] go: github.com/BurntSushi/[email protected]: unknown revision v0.3.1 [ 33s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/ini.v1" (https fetch: Get https://gopkg.in/ini.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:38510->[::1]:53: read: connection refused) [ 33s] go: finding github.com/pquerna/otp v0.0.0-20160912161815-54653902c20e [ 33s] go: github.com/couchbaselabs/[email protected]: git fetch -f https://github.com/couchbaselabs/go-couchbase refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/2d47292f2004cbf5d3e51786b9fc8efc550c0abd3572f4c1e9c13bd6fcbef836: exit status 128: [ 33s] fatal: unable to access 'https://github.com/couchbaselabs/go-couchbase/': Could not resolve host: github.com [ 33s] go: finding github.com/prometheus/client_golang v0.9.3 [ 33s] go: github.com/lafriks/[email protected]: unknown revision v1.0.0 [ 33s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/ldap.v3" (https fetch: Get https://gopkg.in/ldap.v3?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:60308->[::1]:53: read: connection refused) [ 33s] go: finding github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca [ 33s] go: github.com/blevesearch/[email protected]: git fetch -f https://github.com/blevesearch/segment refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/ed55fddb9cf281207e81d221d5211a84b56f0a1be0ebb37fe05148591062a3a4: exit status 128: [ 33s] fatal: unable to access 'https://github.com/blevesearch/segment/': Could not resolve host: github.com [ 33s] go: gopkg.in/editorconfig/[email protected]: unrecognized import path "gopkg.in/editorconfig/editorconfig-core-go.v1" (https fetch: Get https://gopkg.in/editorconfig/editorconfig-core-go.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:48266->[::1]:53: read: connection refused) [ 33s] go: finding github.com/PuerkitoBio/goquery v0.0.0-20170324135448-ed7d758e9a34 [ 33s] go: github.com/kballard/[email protected]: git fetch -f https://github.com/kballard/go-shellquote refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/10200659182a2049e80180b52076173a6e505306c5402c6914c6b9c478ba64cf: exit status 128: [ 33s] fatal: unable to access 'https://github.com/kballard/go-shellquote/': Could not resolve host: github.com [ 33s] go: mvdan.cc/xurls/[email protected]: unrecognized import path "mvdan.cc/xurls/v2" (https fetch: Get https://mvdan.cc/xurls/v2?go-get=1: dial tcp: lookup mvdan.cc on [::1]:53: read udp [::1]:39931->[::1]:53: read: connection refused) [ 33s] go: finding github.com/chaseadamsio/goorgeous v0.0.0-20170901132237-098da33fde5f [ 33s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/cache refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/bcd49de59dce8a59955e0c739cde4964cb22bacd6f87cb0203bb10e68309c77a: exit status 128: [ 33s] fatal: unable to access 'https://github.com/go-macaron/cache/': Could not resolve host: github.com [ 33s] go: finding github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870 [ 33s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/subset refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7200404736c471bc457c4718f76c61c87745515afc30e464afb4a1928a11110a: exit status 128: [ 33s] fatal: unable to access 'https://github.com/facebookgo/subset/': Could not resolve host: github.com [ 33s] go: github.com/prometheus/[email protected]: unknown revision v0.9.3 [ 33s] go: finding github.com/boombuler/barcode v0.0.0-20161226211916-fe0f26ff6d26 [ 33s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/macaron.v1" (https fetch: Get https://gopkg.in/macaron.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:58076->[::1]:53: read: connection refused) [ 33s] go: finding github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc [ 33s] go: github.com/siddontang/[email protected]: git fetch -f https://github.com/siddontang/go-snappy refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/72810791e48f271eed00c0840163a50451db9ceb7058559a97fa44eb756ca3a8: exit status 128: [ 33s] fatal: unable to access 'https://github.com/siddontang/go-snappy/': Could not resolve host: github.com [ 33s] go: finding github.com/sergi/go-diff v1.0.0 [ 33s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/clock refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7999e104939d1a4634837d7a07eebc31b5e9233f3c8eb4941ddcb1f422824d61: exit status 128: [ 33s] fatal: unable to access 'https://github.com/facebookgo/clock/': Could not resolve host: github.com [ 33s] go: finding github.com/go-xorm/core v0.6.0 [ 33s] go: github.com/sergi/[email protected]: unknown revision v1.0.0 [ 33s] go: finding github.com/dgrijalva/jwt-go v3.2.0+incompatible [ 33s] go: github.com/saintfish/[email protected]: git fetch -f https://github.com/saintfish/chardet refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/34e37a09a286ed0845513bf9381387e98be5749dbfa1fdf66535067a73229fbe: exit status 128: [ 33s] fatal: unable to access 'https://github.com/saintfish/chardet/': Could not resolve host: github.com [ 33s] go: finding github.com/Unknwon/i18n v0.0.0-20171114194641-b64d33658966 [ 33s] go: github.com/lunny/[email protected]: git fetch -f https://github.com/lunny/dingtalk_webhook refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/09a4f2dfde3676ab224038184919e4eebbda754dbbe08f4654ffd76800fa2d0e: exit status 128: [ 33s] fatal: unable to access 'https://github.com/lunny/dingtalk_webhook/': Could not resolve host: github.com [ 33s] go: finding github.com/google/go-github/v24 v24.0.1 [ 33s] go: github.com/dgrijalva/[email protected]+incompatible: unknown revision v3.2.0 [ 33s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/yaml.v2" (https fetch: Get https://gopkg.in/yaml.v2?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:59688->[::1]:53: read: connection refused) [ 33s] go: finding github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6 [ 33s] go: github.com/go-xorm/[email protected]: unknown revision v0.6.0 [ 33s] go: gopkg.in/src-d/[email protected]: unrecognized import path "gopkg.in/src-d/go-billy.v4" (https fetch: Get https://gopkg.in/src-d/go-billy.v4?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:46633->[::1]:53: read: connection refused) [ 33s] go: finding github.com/lib/pq v1.1.0 [ 33s] go: github.com/chaseadamsio/[email protected]: git fetch -f https://github.com/chaseadamsio/goorgeous refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/a95ae37c0aa6306dc1f3ae2a235e40d1c8538a71da2e2c4141aa82c2da0583e8: exit status 128: [ 33s] fatal: unable to access 'https://github.com/chaseadamsio/goorgeous/': Could not resolve host: github.com [ 33s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/oauth2" (https fetch: Get https://golang.org/x/oauth2?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:44138->[::1]:53: read: connection refused) [ 33s] go: github.com/google/go-github/[email protected]: unknown revision v24.0.1 [ 33s] go: finding github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b [ 33s] go: finding github.com/couchbase/vellum v0.0.0-20190111184608-e91b68ff3efe [ 33s] go: github.com/Unknwon/[email protected]: git fetch -f https://github.com/Unknwon/i18n refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/31c7092b233d3c04522e2aba148f73d1fd3912dbad238e244a171ff4794140bf: exit status 128: [ 33s] fatal: unable to access 'https://github.com/Unknwon/i18n/': Could not resolve host: github.com [ 33s] go: finding github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd [ 33s] go: github.com/klauspost/[email protected]: git fetch -f https://github.com/klauspost/compress refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/5180178edc4187a3cee47e53fadeab1d44743eb805668aa1bbc18a0377ce8080: exit status 128: [ 33s] fatal: unable to access 'https://github.com/klauspost/compress/': Could not resolve host: github.com [ 33s] go: finding github.com/go-macaron/inject v0.0.0-20160627170012-d8a0b8677191 [ 33s] go: github.com/pquerna/[email protected]: git fetch -f https://github.com/pquerna/otp refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/c68498bc1e2255e1661039b9cf7d7a6723733d7d1add46ef7e692a6bbd1e650e: exit status 128: [ 33s] fatal: unable to access 'https://github.com/pquerna/otp/': Could not resolve host: github.com [ 33s] go: finding github.com/go-macaron/binding v0.0.0-20160711225916-9440f336b443 [ 33s] go: github.com/boombuler/[email protected]: git fetch -f https://github.com/boombuler/barcode refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/22489de97821e94baa022124d71394420fb4e40a88297063e2c8c443cce55e26: exit status 128: [ 33s] fatal: unable to access 'https://github.com/boombuler/barcode/': Could not resolve host: github.com [ 33s] go: finding github.com/Unknwon/paginater v0.0.0-20151104151617-7748a72e0141 [ 33s] go: github.com/msteinert/[email protected]: git fetch -f https://github.com/msteinert/pam refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/c778997adf90534f0e18aedfc548469ab5e307d7463341364a6795a4499c50ff: exit status 128: [ 33s] fatal: unable to access 'https://github.com/msteinert/pam/': Could not resolve host: github.com [ 33s] go: finding github.com/facebookgo/httpdown v0.0.0-20160323221027-a3b1354551a2 [ 33s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/binding refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7d30dc1a0102fbc598bb977524ab6ea70c741f924dfbfcab7aa9b79623d68579: exit status 128: [ 33s] fatal: unable to access 'https://github.com/go-macaron/binding/': Could not resolve host: github.com [ 33s] go: finding github.com/shurcooL/sanitized_anchor_name v0.0.0-20160918041101-1dba4b3954bc [ 33s] go: github.com/PuerkitoBio/[email protected]: git fetch -f https://github.com/PuerkitoBio/goquery refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/f321618cd9252a84a0fb61526831581c618488d9546662b78d83c752eaf98089: exit status 128: [ 33s] fatal: unable to access 'https://github.com/PuerkitoBio/goquery/': Could not resolve host: github.com [ 33s] go: strk.kbt.io/projects/go/[email protected]: unrecognized import path "strk.kbt.io/projects/go/libravatar" (https fetch: Get https://strk.kbt.io/projects/go/libravatar?go-get=1: dial tcp: lookup strk.kbt.io on [::1]:53: read udp [::1]:48452->[::1]:53: read: connection refused) [ 33s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/redis.v2" (https fetch: Get https://gopkg.in/redis.v2?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:35253->[::1]:53: read: connection refused) [ 33s] go: github.com/lib/[email protected]: unknown revision v1.1.0 [ 33s] go: github.com/klauspost/[email protected]: git fetch -f https://github.com/klauspost/crc32 refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/b368b11e6e732d7e81359920dedff5faf0900ced71968d970fd842d78715bd9b: exit status 128: [ 33s] fatal: unable to access 'https://github.com/klauspost/crc32/': Could not resolve host: github.com [ 33s] go: github.com/shurcooL/[email protected]: git fetch -f https://github.com/shurcooL/httpfs refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/377b0c190b0e3c46d939e9f9d7186cb6e6903eb0b98ca261d9c84df5161deb5f: exit status 128: [ 33s] fatal: unable to access 'https://github.com/shurcooL/httpfs/': Could not resolve host: github.com [ 33s] go: github.com/glycerine/[email protected]: git fetch -f https://github.com/glycerine/go-unsnap-stream refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/29efc078aecf348b6d3f4ee31dbbd0318b0b751f44c8daf4bf339efb61bc6c6b: exit status 128: [ 33s] fatal: unable to access 'https://github.com/glycerine/go-unsnap-stream/': Could not resolve host: github.com [ 33s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/inject refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/9893561d2b208f17af46af7673b06e857a6dab34de6d1f5d37eef8e0f8c11b05: exit status 128: [ 33s] fatal: unable to access 'https://github.com/go-macaron/inject/': Could not resolve host: github.com [ 33s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/httpdown refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/a0f702a9690b585ba8ede35bd00fb9ee83d4d1036d9a78197309bcf59bb0bc08: exit status 128: [ 33s] fatal: unable to access 'https://github.com/facebookgo/httpdown/': Could not resolve host: github.com [ 33s] go: github.com/shurcooL/[email protected]: git fetch -f https://github.com/shurcooL/sanitized_anchor_name refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/76c2951a1319a997cd8e8a30458383d1d32a6ff84eeca11610f09db33a517db9: exit status 128: [ 33s] fatal: unable to access 'https://github.com/shurcooL/sanitized_anchor_name/': Could not resolve host: github.com [ 33s] go: github.com/couchbase/[email protected]: git fetch -f https://github.com/couchbase/vellum refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/3cd6a8dd3d0d8d25bc9e957caf20b7eb9b40310d976ed3309f76c3fa74d5fb1e: exit status 128: [ 33s] fatal: unable to access 'https://github.com/couchbase/vellum/': Could not resolve host: github.com [ 33s] go: github.com/Unknwon/[email protected]: git fetch -f https://github.com/Unknwon/paginater refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/03262f6aef34f3958bd9eb7a8a1e5dcc6712996e5c5cfff18ee00b99bd87256c: exit status 128: [ 33s] fatal: unable to access 'https://github.com/Unknwon/paginater/': Could not resolve host: github.com [ 33s] go: error loading module requirements [ 33s] modules/options/options.go:8: running "go": exit status 1 [ 33s] modules/templates/dynamic.go [ 33s] modules/templates/helper.go [ 33s] modules/templates/templates.go [ 34s] writing bindata.go [ 34s] go: finding github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc [ 34s] go: finding github.com/philhofer/fwd v1.0.0 [ 34s] go: finding github.com/etcd-io/bbolt v1.3.2 [ 34s] go: finding github.com/jmhodges/levigo v1.0.0 [ 34s] go: finding github.com/russross/blackfriday v0.0.0-20180428102519-11635eb403ff [ 34s] go: finding github.com/go-xorm/core v0.6.0 [ 34s] go: finding github.com/Unknwon/com v0.0.0-20190321035513-0fed4efef755 [ 34s] go: finding github.com/yohcop/openid-go v0.0.0-20160914080427-2c050d2dae53 [ 34s] go: finding github.com/go-macaron/i18n v0.0.0-20160612092837-ef57533c3b0f [ 34s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/net" (https fetch: Get https://golang.org/x/net?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:58765->[::1]:53: read: connection refused) [ 34s] go: finding github.com/emirpasic/gods v1.12.0 [ 34s] go: github.com/philhofer/[email protected]: unknown revision v1.0.0 [ 34s] go: finding github.com/urfave/cli v1.20.0 [ 34s] go: github.com/emirpasic/[email protected]: unknown revision v1.12.0 [ 34s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/gomail.v2" (https fetch: Get https://gopkg.in/gomail.v2?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:44732->[::1]:53: read: connection refused) [ 34s] go: finding github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d [ 34s] go: github.com/siddontang/[email protected]: git fetch -f https://github.com/siddontang/go-snappy refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/72810791e48f271eed00c0840163a50451db9ceb7058559a97fa44eb756ca3a8: exit status 128: [ 34s] fatal: unable to access 'https://github.com/siddontang/go-snappy/': Could not resolve host: github.com [ 34s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/testfixtures.v2" (https fetch: Get https://gopkg.in/testfixtures.v2?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:60794->[::1]:53: read: connection refused) [ 34s] go: finding github.com/Unknwon/cae v0.0.0-20160715032808-c6aac99ea2ca [ 34s] go: github.com/etcd-io/[email protected]: unknown revision v1.3.2 [ 34s] go: finding github.com/klauspost/compress v0.0.0-20161025140425-8df558b6cb6f [ 34s] go: github.com/jmhodges/[email protected]: unknown revision v1.0.0 [ 34s] go: finding github.com/willf/bitset v0.0.0-20180426185212-8ce1146b8621 [ 34s] go: github.com/Unknwon/[email protected]: git fetch -f https://github.com/Unknwon/cae refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/f3393d5217a615250db1ece5d3adbfae7c8a699b09d25b6fef1255e6f26f89a2: exit status 128: [ 34s] fatal: unable to access 'https://github.com/Unknwon/cae/': Could not resolve host: github.com [ 34s] go: finding github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870 [ 34s] go: github.com/go-xorm/[email protected]: unknown revision v0.6.0 [ 34s] go: finding github.com/google/go-github/v24 v24.0.1 [ 34s] go: github.com/urfave/[email protected]: unknown revision v1.20.0 [ 34s] go: finding github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd [ 34s] go: github.com/msteinert/[email protected]: git fetch -f https://github.com/msteinert/pam refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/c778997adf90534f0e18aedfc548469ab5e307d7463341364a6795a4499c50ff: exit status 128: [ 34s] fatal: unable to access 'https://github.com/msteinert/pam/': Could not resolve host: github.com [ 34s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/ldap.v3" (https fetch: Get https://gopkg.in/ldap.v3?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:56476->[::1]:53: read: connection refused) [ 34s] go: finding github.com/edsrzf/mmap-go v0.0.0-20170320065105-0bce6a688712 [ 34s] go: github.com/Unknwon/[email protected]: git fetch -f https://github.com/Unknwon/com refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/2f84e189d78fdca572fb571267858b24f0c3b35a15e1ebcd4675deadc43a4c54: exit status 128: [ 34s] fatal: unable to access 'https://github.com/Unknwon/com/': Could not resolve host: github.com [ 34s] go: finding github.com/go-macaron/csrf v0.0.0-20180426211211-503617c6b372 [ 34s] go: github.com/edsrzf/[email protected]: git fetch -f https://github.com/edsrzf/mmap-go refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/361aa085490f47a0ce0bd5ce581ece7b9ce0e1c390b4389ad7c5771098235fd3: exit status 128: [ 34s] fatal: unable to access 'https://github.com/edsrzf/mmap-go/': Could not resolve host: github.com [ 34s] go: finding github.com/RoaringBitmap/roaring v0.4.7 [ 34s] go: github.com/RoaringBitmap/[email protected]: unknown revision v0.4.7 [ 34s] go: mvdan.cc/xurls/[email protected]: unrecognized import path "mvdan.cc/xurls/v2" (https fetch: Get https://mvdan.cc/xurls/v2?go-get=1: dial tcp: lookup mvdan.cc on [::1]:53: read udp [::1]:41410->[::1]:53: read: connection refused) [ 34s] go: finding github.com/oliamb/cutter v0.2.2 [ 34s] go: github.com/oliamb/[email protected]: unknown revision v0.2.2 [ 34s] go: finding github.com/go-macaron/inject v0.0.0-20160627170012-d8a0b8677191 [ 34s] go: github.com/google/go-github/[email protected]: unknown revision v24.0.1 [ 34s] go: finding github.com/mattn/go-isatty v0.0.7 [ 34s] go: github.com/yohcop/[email protected]: git fetch -f https://github.com/yohcop/openid-go refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/ee5ecc51a1a22ce7170f472e31c570b6a967cd11846100e9f727ba52502a4615: exit status 128: [ 34s] fatal: unable to access 'https://github.com/yohcop/openid-go/': Could not resolve host: github.com [ 34s] go: finding github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657 [ 34s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/i18n refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/aeead2099390dff900c1716127311a54d929271b211a1a60b3e771e7ec86df9e: exit status 128: [ 34s] fatal: unable to access 'https://github.com/go-macaron/i18n/': Could not resolve host: github.com [ 34s] go: github.com/russross/[email protected]: git fetch -f https://github.com/russross/blackfriday refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/29135eeac1b671a9c66038ff945c80ef02cc537e9afd417c006541c7be820005: exit status 128: [ 34s] fatal: unable to access 'https://github.com/russross/blackfriday/': Could not resolve host: github.com [ 34s] go: finding github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de [ 34s] go: finding github.com/mattn/go-sqlite3 v1.10.0 [ 34s] go: github.com/willf/[email protected]: git fetch -f https://github.com/willf/bitset refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/5e0c047f55b1c6a1f7f223d97771ad92e6f79f9f2e3e921bdf122353fc2a0212: exit status 128: [ 34s] fatal: unable to access 'https://github.com/willf/bitset/': Could not resolve host: github.com [ 34s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/subset refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7200404736c471bc457c4718f76c61c87745515afc30e464afb4a1928a11110a: exit status 128: [ 34s] fatal: unable to access 'https://github.com/facebookgo/subset/': Could not resolve host: github.com [ 34s] go: finding github.com/bradfitz/gomemcache v0.0.0-20160117192205-fb1f79c6b65a [ 34s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/yaml.v2" (https fetch: Get https://gopkg.in/yaml.v2?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:52603->[::1]:53: read: connection refused) [ 34s] go: finding github.com/joho/godotenv v1.3.0 [ 34s] go: github.com/mattn/[email protected]: unknown revision v1.10.0 [ 34s] go: finding github.com/tecbot/gorocksdb v0.0.0-20181010114359-8752a9433481 [ 34s] go: github.com/glycerine/[email protected]: git fetch -f https://github.com/glycerine/go-unsnap-stream refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/29efc078aecf348b6d3f4ee31dbbd0318b0b751f44c8daf4bf339efb61bc6c6b: exit status 128: [ 34s] fatal: unable to access 'https://github.com/glycerine/go-unsnap-stream/': Could not resolve host: github.com [ 34s] go: finding github.com/blevesearch/go-porterstemmer v0.0.0-20141230013033-23a2c8e5cf1f [ 34s] go: github.com/tecbot/[email protected]: git fetch -f https://github.com/tecbot/gorocksdb refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/aeed515c80a369e870411bc2e2299d584eba8d6b0bc82cea94d2d2341fc0642c: exit status 128: [ 34s] fatal: unable to access 'https://github.com/tecbot/gorocksdb/': Could not resolve host: github.com [ 34s] go: finding github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2 [ 34s] go: github.com/klauspost/[email protected]: git fetch -f https://github.com/klauspost/compress refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/5180178edc4187a3cee47e53fadeab1d44743eb805668aa1bbc18a0377ce8080: exit status 128: [ 34s] fatal: unable to access 'https://github.com/klauspost/compress/': Could not resolve host: github.com [ 34s] go: finding github.com/denisenkom/go-mssqldb v0.0.0-20180315180555-6a30f4e59a44 [ 34s] go: github.com/steveyen/[email protected]: git fetch -f https://github.com/steveyen/gtreap refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/099f28c1faefc527e487740eace89de148bf9b0dfc4f92a11dda94c11107cecf: exit status 128: [ 34s] fatal: unable to access 'https://github.com/steveyen/gtreap/': Could not resolve host: github.com [ 34s] go: finding github.com/issue9/assert v1.3.2 [ 34s] go: github.com/mattn/[email protected]: unknown revision v0.0.7 [ 34s] go: go.etcd.io/[email protected]: unrecognized import path "go.etcd.io/bbolt" (https fetch: Get https://go.etcd.io/bbolt?go-get=1: dial tcp: lookup go.etcd.io on [::1]:53: read udp [::1]:49139->[::1]:53: read: connection refused) [ 34s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/sys" (https fetch: Get https://golang.org/x/sys?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:33020->[::1]:53: read: connection refused) [ 34s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/inject refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/9893561d2b208f17af46af7673b06e857a6dab34de6d1f5d37eef8e0f8c11b05: exit status 128: [ 34s] fatal: unable to access 'https://github.com/go-macaron/inject/': Could not resolve host: github.com [ 34s] go: finding github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae [ 34s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/asn1-ber.v1" (https fetch: Get https://gopkg.in/asn1-ber.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:36754->[::1]:53: read: connection refused) [ 34s] go: finding github.com/go-macaron/binding v0.0.0-20160711225916-9440f336b443 [ 34s] go: github.com/joho/[email protected]: unknown revision v1.3.0 [ 34s] go: finding github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5 [ 34s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/csrf refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/a0096764fd16bb8f89cb3fcf4330f1a5207887b7ba6ca4ed453da09e907df9a1: exit status 128: [ 34s] fatal: unable to access 'https://github.com/go-macaron/csrf/': Could not resolve host: github.com [ 34s] go: finding github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6 [ 34s] go: github.com/kballard/[email protected]: git fetch -f https://github.com/kballard/go-shellquote refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/10200659182a2049e80180b52076173a6e505306c5402c6914c6b9c478ba64cf: exit status 128: [ 34s] fatal: unable to access 'https://github.com/kballard/go-shellquote/': Could not resolve host: github.com [ 34s] go: finding github.com/facebookgo/httpdown v0.0.0-20160323221027-a3b1354551a2 [ 34s] go: github.com/bradfitz/[email protected]: git fetch -f https://github.com/bradfitz/gomemcache refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/9f0564f3965ded68353f2d411c72f47d2981c4421adc43579100704ff9ef003d: exit status 128: [ 34s] fatal: unable to access 'https://github.com/bradfitz/gomemcache/': Could not resolve host: github.com [ 34s] go: xorm.io/[email protected]: unrecognized import path "xorm.io/core" (https fetch: Get https://xorm.io/core?go-get=1: dial tcp: lookup xorm.io on [::1]:53: read udp [::1]:40934->[::1]:53: read: connection refused) [ 34s] go: finding github.com/gliderlabs/ssh v0.1.4 [ 34s] go: github.com/blevesearch/[email protected]: git fetch -f https://github.com/blevesearch/go-porterstemmer refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/975ac9e19d14568792095447225db27569f76a58ad0a6b7034e703975a774fc1: exit status 128: [ 34s] fatal: unable to access 'https://github.com/blevesearch/go-porterstemmer/': Could not resolve host: github.com [ 34s] go: github.com/gliderlabs/[email protected]: unknown revision v0.1.4 [ 34s] go: finding github.com/go-macaron/toolbox v0.0.0-20180818072302-a77f45a7ce90 [ 34s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/bufio.v1" (https fetch: Get https://gopkg.in/bufio.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:33540->[::1]:53: read: connection refused) [ 34s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/redis.v2" (https fetch: Get https://gopkg.in/redis.v2?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:42718->[::1]:53: read: connection refused) [ 34s] go: finding github.com/prometheus/client_golang v0.9.3 [ 34s] go: github.com/prometheus/[email protected]: unknown revision v0.9.3 [ 34s] go: finding github.com/tinylib/msgp v0.0.0-20180516164116-c8cf64dff200 [ 34s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/toolbox refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/30ccac9e0040eb08395c2366a6b07ee8283921f93b6eefceb685bee5b7a141c3: exit status 128: [ 34s] fatal: unable to access 'https://github.com/go-macaron/toolbox/': Could not resolve host: github.com [ 34s] go: finding github.com/couchbaselabs/go-couchbase v0.0.0-20190117181324-d904413d884d [ 34s] go: github.com/issue9/[email protected]: unknown revision v1.3.2 [ 34s] go: finding github.com/issue9/identicon v0.0.0-20160320065130-d36b54562f4c [ 34s] go: github.com/lunny/[email protected]: git fetch -f https://github.com/lunny/log refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/a6e5674b2eca55c15ed3f9cc1a8314df7ea94e00d6760c47214bb77cbb4bfca7: exit status 128: [ 34s] fatal: unable to access 'https://github.com/lunny/log/': Could not resolve host: github.com [ 34s] go: finding github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a [ 34s] go: github.com/tinylib/[email protected]: git fetch -f https://github.com/tinylib/msgp refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/9a3d10e611f6412589d884667e8073aa31e525ccd368ee5a32cdfc182b06c5fe: exit status 128: [ 34s] fatal: unable to access 'https://github.com/tinylib/msgp/': Could not resolve host: github.com [ 34s] go: finding github.com/facebookgo/grace v0.0.0-20160926231715-5729e484473f [ 34s] go: github.com/denisenkom/[email protected]: git fetch -f https://github.com/denisenkom/go-mssqldb refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/d004f62f0bf917602489d74fdea89c7a3f58cffbf618ef1e4fc751f5d4836311: exit status 128: [ 34s] fatal: unable to access 'https://github.com/denisenkom/go-mssqldb/': Could not resolve host: github.com [ 34s] go: finding github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75 [ 34s] go: github.com/mschoch/[email protected]: git fetch -f https://github.com/mschoch/smat refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/95491a4718b97b45ae0c5200a77ac9e09ec18978c247e81d8a213bdaa212c518: exit status 128: [ 34s] fatal: unable to access 'https://github.com/mschoch/smat/': Could not resolve host: github.com [ 34s] go: finding github.com/BurntSushi/toml v0.3.1 [ 34s] go: github.com/nfnt/[email protected]: git fetch -f https://github.com/nfnt/resize refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/3c41db3334414b5559791060aadeb7b9a9cd6323146d18c88ea1134dabc06c55: exit status 128: [ 34s] fatal: unable to access 'https://github.com/nfnt/resize/': Could not resolve host: github.com [ 34s] go: finding github.com/remyoudompheng/bigfft v0.0.0-20190321074620-2f0d2b0e0001 [ 34s] go: github.com/BurntSushi/[email protected]: unknown revision v0.3.1 [ 34s] go: xorm.io/[email protected]: unrecognized import path "xorm.io/builder" (https fetch: Get https://xorm.io/builder?go-get=1: dial tcp: lookup xorm.io on [::1]:53: read udp [::1]:39529->[::1]:53: read: connection refused) [ 34s] go: finding github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 [ 34s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/binding refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7d30dc1a0102fbc598bb977524ab6ea70c741f924dfbfcab7aa9b79623d68579: exit status 128: [ 34s] fatal: unable to access 'https://github.com/go-macaron/binding/': Could not resolve host: github.com [ 34s] go: finding github.com/go-macaron/session v0.0.0-20190131233854-0a0a789bf193 [ 34s] go: github.com/couchbaselabs/[email protected]: git fetch -f https://github.com/couchbaselabs/go-couchbase refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/2d47292f2004cbf5d3e51786b9fc8efc550c0abd3572f4c1e9c13bd6fcbef836: exit status 128: [ 34s] fatal: unable to access 'https://github.com/couchbaselabs/go-couchbase/': Could not resolve host: github.com [ 34s] go: finding github.com/lunny/levelqueue v0.0.0-20190217115915-02b525a4418e [ 34s] go: github.com/klauspost/[email protected]: git fetch -f https://github.com/klauspost/crc32 refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/b368b11e6e732d7e81359920dedff5faf0900ced71968d970fd842d78715bd9b: exit status 128: [ 34s] fatal: unable to access 'https://github.com/klauspost/crc32/': Could not resolve host: github.com [ 34s] go: finding github.com/shurcooL/sanitized_anchor_name v0.0.0-20160918041101-1dba4b3954bc [ 34s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/httpdown refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/a0f702a9690b585ba8ede35bd00fb9ee83d4d1036d9a78197309bcf59bb0bc08: exit status 128: [ 34s] fatal: unable to access 'https://github.com/facebookgo/httpdown/': Could not resolve host: github.com [ 34s] go: gopkg.in/stretchr/[email protected]: unrecognized import path "gopkg.in/stretchr/testify.v1" (https fetch: Get https://gopkg.in/stretchr/testify.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:33765->[::1]:53: read: connection refused) [ 34s] go: finding github.com/Unknwon/i18n v0.0.0-20171114194641-b64d33658966 [ 34s] go: github.com/mcuadros/[email protected]: git fetch -f https://github.com/mcuadros/go-version refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/388026146b08e02255e23f3638639b4ee260b18b43b7680b404c7a0a3ff79215: exit status 128: [ 34s] fatal: unable to access 'https://github.com/mcuadros/go-version/': Could not resolve host: github.com [ 34s] go: finding github.com/glycerine/goconvey v0.0.0-20190315024820-982ee783a72e [ 34s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/session refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/8e56d470350321b745e44e55f5eef9aa56b01959f236455de2fb5baf1c0548e3: exit status 128: [ 34s] fatal: unable to access 'https://github.com/go-macaron/session/': Could not resolve host: github.com [ 34s] go: finding github.com/mattn/go-oci8 v0.0.0-20190320171441-14ba190cf52d [ 34s] go: github.com/remyoudompheng/[email protected]: git fetch -f https://github.com/remyoudompheng/bigfft refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/b1d11a64828f2815d188aefad878a02a0f78b25d2e83d15e4ed42747cd35a11f: exit status 128: [ 34s] fatal: unable to access 'https://github.com/remyoudompheng/bigfft/': Could not resolve host: github.com [ 34s] go: finding github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d [ 34s] go: github.com/lunny/[email protected]: git fetch -f https://github.com/lunny/levelqueue refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/1e05c64c4998c929bccb7b6488c35d56468ad8f12df84ae3c43c015696edaa2d: exit status 128: [ 34s] fatal: unable to access 'https://github.com/lunny/levelqueue/': Could not resolve host: github.com [ 34s] go: finding github.com/lib/pq v1.1.0 [ 34s] go: github.com/shurcooL/[email protected]: git fetch -f https://github.com/shurcooL/sanitized_anchor_name refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/76c2951a1319a997cd8e8a30458383d1d32a6ff84eeca11610f09db33a517db9: exit status 128: [ 34s] fatal: unable to access 'https://github.com/shurcooL/sanitized_anchor_name/': Could not resolve host: github.com [ 34s] go: finding github.com/facebookgo/freeport v0.0.0-20150612182905-d4adf43b75b9 [ 34s] go: github.com/lib/[email protected]: unknown revision v1.1.0 [ 34s] go: finding github.com/satori/go.uuid v1.2.0 [ 34s] go: github.com/mattn/[email protected]: git fetch -f https://github.com/mattn/go-oci8 refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/f6cb81c9c14158141515a42a0d4ba69af922b8a90c7dc4a0abe7b45119241dc1: exit status 128: [ 34s] fatal: unable to access 'https://github.com/mattn/go-oci8/': Could not resolve host: github.com [ 34s] go: finding github.com/gogits/chardet v0.0.0-20150115103509-2404f7772561 [ 34s] go: github.com/satori/[email protected]: unknown revision v1.2.0 [ 34s] go: finding github.com/facebookgo/stats v0.0.0-20151006221625-1b76add642e4 [ 34s] go: github.com/issue9/[email protected]: git fetch -f https://github.com/issue9/identicon refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/811abd42c0be6f257a29dbac87f5270fe23cc1fdc95e54ef5a0731f403f9fec9: exit status 128: [ 34s] fatal: unable to access 'https://github.com/issue9/identicon/': Could not resolve host: github.com [ 34s] go: finding github.com/cznic/strutil v0.0.0-20181122101858-275e90344537 [ 34s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/grace refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/6b7cb62a169e95ab56166da71b41ddf490381bed25482ff5a7c453fdab1afa06: exit status 128: [ 34s] fatal: unable to access 'https://github.com/facebookgo/grace/': Could not resolve host: github.com [ 34s] go: finding github.com/google/go-cmp v0.3.0 [ 34s] go: github.com/ethantkoenig/[email protected]: git fetch -f https://github.com/ethantkoenig/rupture refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/693b31e2b22badca7e13d31fa26f379d0b7d67737fff4549bd839a3a01126327: exit status 128: [ 34s] fatal: unable to access 'https://github.com/ethantkoenig/rupture/': Could not resolve host: github.com [ 34s] go: finding github.com/microcosm-cc/bluemonday v0.0.0-20161012083705-f77f16ffc87a [ 34s] go: github.com/google/[email protected]: unknown revision v0.3.0 [ 34s] go: finding github.com/markbates/goth v1.49.0 [ 34s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/stack refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7a08904f7ca7b725118fad54f797bae46ea42d6399918c84e4559f43f6e33566: exit status 128: [ 34s] fatal: unable to access 'https://github.com/facebookgo/stack/': Could not resolve host: github.com [ 34s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/crypto" (https fetch: Get https://golang.org/x/crypto?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:54744->[::1]:53: read: connection refused) [ 34s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/tools" (https fetch: Get https://golang.org/x/tools?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:53135->[::1]:53: read: connection refused) [ 34s] go: finding github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 [ 34s] go: github.com/markbates/[email protected]: unknown revision v1.49.0 [ 34s] go: finding github.com/go-macaron/cors v0.0.0-20190309005821-6fd6a9bfe14e9 [ 35s] go: github.com/Unknwon/[email protected]: git fetch -f https://github.com/Unknwon/i18n refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/31c7092b233d3c04522e2aba148f73d1fd3912dbad238e244a171ff4794140bf: exit status 128: [ 35s] fatal: unable to access 'https://github.com/Unknwon/i18n/': Could not resolve host: github.com [ 35s] go: finding github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af [ 35s] go: github.com/glycerine/[email protected]: git fetch -f https://github.com/glycerine/goconvey refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/0a88f7134bef26070c5f5c11f6205fa328fdb1e0f639a7348a75a9e5f3262c26: exit status 128: [ 35s] fatal: unable to access 'https://github.com/glycerine/goconvey/': Could not resolve host: github.com [ 35s] go: finding github.com/go-macaron/cache v0.0.0-20151013081102-561735312776 [ 35s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/cors refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/6a8d5018567175d43fe28f2da01072e0fc2f55c86d3d128d2f305066a72bedbf: exit status 128: [ 35s] fatal: unable to access 'https://github.com/go-macaron/cors/': Could not resolve host: github.com [ 35s] go: gopkg.in/src-d/[email protected]: unrecognized import path "gopkg.in/src-d/go-billy.v4" (https fetch: Get https://gopkg.in/src-d/go-billy.v4?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:46802->[::1]:53: read: connection refused) [ 35s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/freeport refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/88fe2634ac2833be2a40021e94bde30974bfd2a0a4c98a4ede5a01024fba31d6: exit status 128: [ 35s] fatal: unable to access 'https://github.com/facebookgo/freeport/': Could not resolve host: github.com [ 35s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/oauth2" (https fetch: Get https://golang.org/x/oauth2?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:39440->[::1]:53: read: connection refused) [ 35s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/ini.v1" (https fetch: Get https://gopkg.in/ini.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:42101->[::1]:53: read: connection refused) [ 35s] go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/text" (https fetch: Get https://golang.org/x/text?go-get=1: dial tcp: lookup golang.org on [::1]:53: read udp [::1]:51746->[::1]:53: read: connection refused) [ 35s] go: gopkg.in/editorconfig/[email protected]: unrecognized import path "gopkg.in/editorconfig/editorconfig-core-go.v1" (https fetch: Get https://gopkg.in/editorconfig/editorconfig-core-go.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:32818->[::1]:53: read: connection refused) [ 35s] go: finding github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca [ 35s] go: finding github.com/klauspost/cpuid v0.0.0-20160302075316-09cded8978dc [ 35s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/cache refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/bcd49de59dce8a59955e0c739cde4964cb22bacd6f87cb0203bb10e68309c77a: exit status 128: [ 35s] fatal: unable to access 'https://github.com/go-macaron/cache/': Could not resolve host: github.com [ 35s] go: finding github.com/chaseadamsio/goorgeous v0.0.0-20170901132237-098da33fde5f [ 35s] go: github.com/gogits/[email protected]: git fetch -f https://github.com/gogits/chardet refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/eecf4c0aaa6f40fccddc6c40a35660b44d9ea08f181c8a61ea8d71b494628749: exit status 128: [ 35s] fatal: unable to access 'https://github.com/gogits/chardet/': Could not resolve host: github.com [ 35s] go: finding github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd [ 35s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/stats refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/75054b1888e7585e2f9c61953cf4ebb366e08350c6d48a352170aace06f08ffc: exit status 128: [ 35s] fatal: unable to access 'https://github.com/facebookgo/stats/': Could not resolve host: github.com [ 35s] go: finding github.com/go-sql-driver/mysql v1.4.1 [ 35s] go: github.com/go-sql-driver/[email protected]: unknown revision v1.4.1 [ 35s] go: finding github.com/bgentry/speakeasy v0.1.0 [ 35s] go: github.com/shurcooL/[email protected]: git fetch -f https://github.com/shurcooL/vfsgen refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/eedfa8cac7090a1b71f292f1b6aaecec26438ab750c340c01cbf92820ce7a263: exit status 128: [ 35s] fatal: unable to access 'https://github.com/shurcooL/vfsgen/': Could not resolve host: github.com [ 35s] go: strk.kbt.io/projects/go/[email protected]: unrecognized import path "strk.kbt.io/projects/go/libravatar" (https fetch: Get https://strk.kbt.io/projects/go/libravatar?go-get=1: dial tcp: lookup strk.kbt.io on [::1]:53: read udp [::1]:55281->[::1]:53: read: connection refused) [ 35s] go: finding github.com/pquerna/otp v0.0.0-20160912161815-54653902c20e [ 35s] go: github.com/cznic/[email protected]: git fetch -f https://github.com/cznic/b refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/0c40695ad575ff92f63ee8a0033b51eaa8b373f37943b7cb0cda9172b771467a: exit status 128: [ 35s] fatal: unable to access 'https://github.com/cznic/b/': Could not resolve host: github.com [ 35s] go: gopkg.in/alexcesaro/[email protected]: unrecognized import path "gopkg.in/alexcesaro/quotedprintable.v3" (https fetch: Get https://gopkg.in/alexcesaro/quotedprintable.v3?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:55675->[::1]:53: read: connection refused) [ 35s] go: finding github.com/andybalholm/cascadia v0.0.0-20161224141413-349dd0209470 [ 35s] go: github.com/bgentry/[email protected]: unknown revision v0.1.0 [ 35s] go: finding github.com/go-xorm/xorm v0.7.3-0.20190620151208-f1b4f8368459 [ 35s] go: github.com/lunny/[email protected]: git fetch -f https://github.com/lunny/nodb refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7177d7eb5f1127babfd5fd00dc40c957fcf06d5cc7cfd8facda26b1d174276c6: exit status 128: [ 35s] fatal: unable to access 'https://github.com/lunny/nodb/': Could not resolve host: github.com [ 35s] go: finding github.com/boombuler/barcode v0.0.0-20161226211916-fe0f26ff6d26 [ 35s] go: github.com/cznic/[email protected]: git fetch -f https://github.com/cznic/mathutil refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/86983ef63bda0a8343b9bd5bdb5f547b977fbafdd67df63fdb251226bb83a071: exit status 128: [ 35s] fatal: unable to access 'https://github.com/cznic/mathutil/': Could not resolve host: github.com [ 35s] go: finding github.com/go-macaron/captcha v0.0.0-20190710000913-8dc5911259df [ 35s] go: github.com/cznic/[email protected]: git fetch -f https://github.com/cznic/strutil refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/2e5370d753e53ed7ceb996fbc96996c174feed8a2998c07ff14315cf311b3523: exit status 128: [ 35s] fatal: unable to access 'https://github.com/cznic/strutil/': Could not resolve host: github.com [ 35s] go: gopkg.in/[email protected]: unrecognized import path "gopkg.in/macaron.v1" (https fetch: Get https://gopkg.in/macaron.v1?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:41543->[::1]:53: read: connection refused) [ 35s] go: finding github.com/gogits/cron v0.0.0-20160810035002-7f3990acf183 [ 35s] go: github.com/go-xorm/[email protected]: git fetch -f https://github.com/go-xorm/xorm refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/1af700a09687feb09755a8d86a1ebf94c891f05c64201e6f9dc687798ece2ec3: exit status 128: [ 35s] fatal: unable to access 'https://github.com/go-xorm/xorm/': Could not resolve host: github.com [ 35s] go: finding github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a [ 35s] go: github.com/saintfish/[email protected]: git fetch -f https://github.com/saintfish/chardet refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/34e37a09a286ed0845513bf9381387e98be5749dbfa1fdf66535067a73229fbe: exit status 128: [ 35s] fatal: unable to access 'https://github.com/saintfish/chardet/': Could not resolve host: github.com [ 35s] go: finding github.com/lafriks/xormstore v1.0.0 [ 35s] go: github.com/microcosm-cc/[email protected]: git fetch -f https://github.com/microcosm-cc/bluemonday refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/b7e257f3daff1b94f2065917db4d2504e37708bb712223e30d10d82572244113: exit status 128: [ 35s] fatal: unable to access 'https://github.com/microcosm-cc/bluemonday/': Could not resolve host: github.com [ 35s] go: finding github.com/dgrijalva/jwt-go v3.2.0+incompatible [ 35s] go: github.com/dgrijalva/[email protected]+incompatible: unknown revision v3.2.0 [ 35s] go: finding github.com/tstranex/u2f v1.0.0 [ 35s] go: github.com/tstranex/[email protected]: unknown revision v1.0.0 [ 35s] go: finding github.com/sergi/go-diff v1.0.0 [ 35s] go: github.com/pquerna/[email protected]: git fetch -f https://github.com/pquerna/otp refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/c68498bc1e2255e1661039b9cf7d7a6723733d7d1add46ef7e692a6bbd1e650e: exit status 128: [ 35s] fatal: unable to access 'https://github.com/pquerna/otp/': Could not resolve host: github.com [ 35s] go: finding github.com/jaytaylor/html2text v0.0.0-20160923191438-8fb95d837f7d [ 35s] go: github.com/sergi/[email protected]: unknown revision v1.0.0 [ 35s] go: finding github.com/couchbase/vellum v0.0.0-20190111184608-e91b68ff3efe [ 35s] go: github.com/andybalholm/[email protected]: git fetch -f https://github.com/andybalholm/cascadia refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/d6269b42d75e2b8569f8020c6621ae67127aad2eab11d7866b511e7a032a9825: exit status 128: [ 35s] fatal: unable to access 'https://github.com/andybalholm/cascadia/': Could not resolve host: github.com [ 35s] go: finding github.com/go-redis/redis v6.15.2+incompatible [ 35s] go: github.com/klauspost/[email protected]: git fetch -f https://github.com/klauspost/cpuid refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/db4bd42d1f2ce9cdd71cbb1b3eb2fea9662f669206e508e2f0dcb7706a2f3895: exit status 128: [ 35s] fatal: unable to access 'https://github.com/klauspost/cpuid/': Could not resolve host: github.com [ 35s] go: github.com/chaseadamsio/[email protected]: git fetch -f https://github.com/chaseadamsio/goorgeous refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/a95ae37c0aa6306dc1f3ae2a235e40d1c8538a71da2e2c4141aa82c2da0583e8: exit status 128: [ 35s] fatal: unable to access 'https://github.com/chaseadamsio/goorgeous/': Could not resolve host: github.com [ 35s] go: finding github.com/PuerkitoBio/goquery v0.0.0-20170324135448-ed7d758e9a34 [ 35s] go: finding github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b [ 35s] go: github.com/go-macaron/[email protected]: git fetch -f https://github.com/go-macaron/captcha refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/654f202a74ee764cd36dedf4f63976a8254e7a1ca5f52991e6cd96e9eb6a2bf2: exit status 128: [ 35s] fatal: unable to access 'https://github.com/go-macaron/captcha/': Could not resolve host: github.com [ 35s] go: gopkg.in/src-d/[email protected]: unrecognized import path "gopkg.in/src-d/go-git.v4" (https fetch: Get https://gopkg.in/src-d/go-git.v4?go-get=1: dial tcp: lookup gopkg.in on [::1]:53: read udp [::1]:37062->[::1]:53: read: connection refused) [ 35s] go: finding github.com/keybase/go-crypto v0.0.0-20170605145657-00ac4db533f6 [ 35s] go: github.com/lafriks/[email protected]: unknown revision v1.0.0 [ 35s] go: finding github.com/blevesearch/bleve v0.0.0-20190214220507-05d86ea8f6e3 [ 35s] go: github.com/couchbase/[email protected]: git fetch -f https://github.com/couchbase/vellum refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/3cd6a8dd3d0d8d25bc9e957caf20b7eb9b40310d976ed3309f76c3fa74d5fb1e: exit status 128: [ 35s] fatal: unable to access 'https://github.com/couchbase/vellum/': Could not resolve host: github.com [ 35s] go: finding github.com/blevesearch/blevex v0.0.0-20180227211930-4b158bb555a3 [ 35s] go: github.com/boombuler/[email protected]: git fetch -f https://github.com/boombuler/barcode refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/22489de97821e94baa022124d71394420fb4e40a88297063e2c8c443cce55e26: exit status 128: [ 35s] fatal: unable to access 'https://github.com/boombuler/barcode/': Could not resolve host: github.com [ 35s] go: finding github.com/stretchr/testify v1.3.0 [ 35s] go: github.com/go-redis/[email protected]+incompatible: unknown revision v6.15.2 [ 35s] go: finding github.com/gorilla/context v1.1.1 [ 35s] go: github.com/jaytaylor/[email protected]: git fetch -f https://github.com/jaytaylor/html2text refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/63d2360eeeff3fdc968db66bc36422fce6fbebcbd44a187629ab5f1b45635217: exit status 128: [ 35s] fatal: unable to access 'https://github.com/jaytaylor/html2text/': Could not resolve host: github.com [ 35s] go: finding github.com/couchbase/goutils v0.0.0-20180530154633-e865a1461c8a [ 35s] go: github.com/stretchr/[email protected]: unknown revision v1.3.0 [ 35s] go: finding github.com/Unknwon/paginater v0.0.0-20151104151617-7748a72e0141 [ 35s] go: github.com/gogits/[email protected]: git fetch -f https://github.com/gogits/cron refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/f697eef11e2eca528454fd1d803889d327276f1a945cb862e3b0cd1f9810063f: exit status 128: [ 35s] fatal: unable to access 'https://github.com/gogits/cron/': Could not resolve host: github.com [ 35s] go: finding github.com/blevesearch/segment v0.0.0-20160105220820-db70c57796cc [ 35s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/clock refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/7999e104939d1a4634837d7a07eebc31b5e9233f3c8eb4941ddcb1f422824d61: exit status 128: [ 35s] fatal: unable to access 'https://github.com/facebookgo/clock/': Could not resolve host: github.com [ 35s] go: finding github.com/couchbase/gomemcached v0.0.0-20181122193126-5125a94a666c [ 35s] go: github.com/shurcooL/[email protected]: git fetch -f https://github.com/shurcooL/httpfs refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/377b0c190b0e3c46d939e9f9d7186cb6e6903eb0b98ca261d9c84df5161deb5f: exit status 128: [ 35s] fatal: unable to access 'https://github.com/shurcooL/httpfs/': Could not resolve host: github.com [ 35s] go: finding github.com/smartystreets/goconvey v0.0.0-20190306220146-200a235640ff [ 35s] go: github.com/blevesearch/[email protected]: git fetch -f https://github.com/blevesearch/bleve refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/248152e6f8c83129a4389ce2b2c372dbd2d0600bfb41d8a4f5f84867db08f243: exit status 128: [ 35s] fatal: unable to access 'https://github.com/blevesearch/bleve/': Could not resolve host: github.com [ 35s] go: finding github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96 [ 35s] go: github.com/keybase/[email protected]: git fetch -f https://github.com/keybase/go-crypto refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/399bb65eebfcf9a3166c8c3e83e2dc232da63a3e602e95e20d1ab61c6916e903: exit status 128: [ 35s] fatal: unable to access 'https://github.com/keybase/go-crypto/': Could not resolve host: github.com [ 35s] go: finding github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51 [ 35s] go: github.com/gorilla/[email protected]: unknown revision v1.1.1 [ 35s] go: github.com/PuerkitoBio/[email protected]: git fetch -f https://github.com/PuerkitoBio/goquery refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/f321618cd9252a84a0fb61526831581c618488d9546662b78d83c752eaf98089: exit status 128: [ 35s] fatal: unable to access 'https://github.com/PuerkitoBio/goquery/': Could not resolve host: github.com [ 35s] go: github.com/Unknwon/[email protected]: git fetch -f https://github.com/Unknwon/paginater refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/03262f6aef34f3958bd9eb7a8a1e5dcc6712996e5c5cfff18ee00b99bd87256c: exit status 128: [ 35s] fatal: unable to access 'https://github.com/Unknwon/paginater/': Could not resolve host: github.com [ 35s] go: github.com/blevesearch/[email protected]: git fetch -f https://github.com/blevesearch/blevex refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/4099a8e2a605288b985c6745cb247e4b899aafbec7520858f9090af5c66c1d53: exit status 128: [ 35s] fatal: unable to access 'https://github.com/blevesearch/blevex/': Could not resolve host: github.com [ 35s] go: github.com/couchbase/[email protected]: git fetch -f https://github.com/couchbase/gomemcached refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/5cfded037f8fa0d23092a0cb04a07916c3f29b6a1cf57ed9d1eba574a0b17af5: exit status 128: [ 35s] fatal: unable to access 'https://github.com/couchbase/gomemcached/': Could not resolve host: github.com [ 35s] go: github.com/lunny/[email protected]: git fetch -f https://github.com/lunny/dingtalk_webhook refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/09a4f2dfde3676ab224038184919e4eebbda754dbbe08f4654ffd76800fa2d0e: exit status 128: [ 35s] fatal: unable to access 'https://github.com/lunny/dingtalk_webhook/': Could not resolve host: github.com [ 35s] go: github.com/facebookgo/[email protected]: git fetch -f https://github.com/facebookgo/ensure refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/9c49f85b4dc7447a298fe77680f330e3491de9b995c65a4f9a61b4715bfb489f: exit status 128: [ 35s] fatal: unable to access 'https://github.com/facebookgo/ensure/': Could not resolve host: github.com [ 35s] go: github.com/couchbase/[email protected]: git fetch -f https://github.com/couchbase/goutils refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/03bee7a5d10e33b66506e8ab00ca10a84544ff3c196a39c5866f4733857dc07f: exit status 128: [ 35s] fatal: unable to access 'https://github.com/couchbase/goutils/': Could not resolve host: github.com [ 35s] go: github.com/blevesearch/[email protected]: git fetch -f https://github.com/blevesearch/segment refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/ed55fddb9cf281207e81d221d5211a84b56f0a1be0ebb37fe05148591062a3a4: exit status 128: [ 35s] fatal: unable to access 'https://github.com/blevesearch/segment/': Could not resolve host: github.com [ 35s] go: github.com/smartystreets/[email protected]: git fetch -f https://github.com/smartystreets/goconvey refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /home/abuild/go/pkg/mod/cache/vcs/1693d9c59c0c1838de53cecb8601eec3084f084265b72c82e78de941f1c8f58c: exit status 128: [ 35s] fatal: unable to access 'https://github.com/smartystreets/goconvey/': Could not resolve host: github.com [ 35s] go: error loading module requirements [ 35s] modules/templates/templates.go:8: running "go": exit status 1 [ 35s] error: Bad exit status from /var/tmp/rpm-tmp.YVzC0E (%build) [ 35s] [ 35s] [ 35s] RPM build errors: [ 35s] Bad exit status from /var/tmp/rpm-tmp.YVzC0E (%build)

@ecsgh
Copy link
Author

ecsgh commented Sep 4, 2019

Think the problem is the macro %gobuild from opensuse. I understand not parameter -mod=vendor.
Same for macro %gotest.

I use now: go build -mod=vendor -v -ldflags '-s -w -X "main.Version=%{version}"' and the package is build and running fine.

Issue can close.

@ecsgh ecsgh closed this as completed Sep 4, 2019
@markVnl
Copy link

markVnl commented Sep 16, 2019

have the same problem on centos and was able to dissect this Issue to make generate
Can not give the "silver bullet solution" simply because i'm not really (understatement) an go(loang) expert.

somehow the go:generate go run -mod=vendor main.go does not honer the vendor directory in
https://github.com/go-gitea/gitea/blob/master/modules/options/options.go#L7
https://github.com/go-gitea/gitea/blob/master/modules/public/public.go#L21
https://github.com/go-gitea/gitea/blob/master/modules/templates/templates.go#L7

And causes go to pull in the dependency's, which in a buildchroot without network capability throws all those errors.

the workaround I use is to omit make generate and generate the bindata manually with a simple script in rhe (rpm) spec-file:

for i in options public templates; do 
   pushd modules/$i
   go run -mod=vendor main.go
   popd
done

@markVnl
Copy link

markVnl commented Sep 16, 2019

Sorry forgot to mention #8008 does not fix this for me

@typeless
Copy link
Contributor

@markVnl Which version of Go do you use?

@markVnl
Copy link

markVnl commented Sep 17, 2019

@typeless go version go1.11.5 , which is supplied by the epel-7 repository

<mock-chroot> sh-4.2# go version
go version go1.11.5 linux/amd64

This is the go environment during the build:

<mock-chroot> sh-4.2# go env
GOARCH="amd64"
GOBIN=""
GOCACHE="/builddir/.cache/go-build"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/builddir/build/BUILD/gitea-1.9.3"
GOPROXY=""
GORACE=""
GOROOT="/usr/lib/golang"
GOTMPDIR=""
GOTOOLDIR="/usr/lib/golang/pkg/tool/linux_amd64"
GCCGO="gccgo"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build672589455=/tmp/go-build -gno-record-gcc-switches"

the source-code lives in :
/builddir/build/BUILD/gitea-1.9.3/gitea-1.9.3
NOTE: did try to build the git-head of gitea in an isolated environment too with same result,
above is the from the actual build of version 1.9.3.

@typeless
Copy link
Contributor

@markVnl For dd3ba9b#diff-b67911656ef5d18c4ae36cb6741b7965 to work, a newer version of Go seems to be required.

@markVnl
Copy link

markVnl commented Sep 17, 2019

For dd3ba9b#diff-b67911656ef5d18c4ae36cb6741b7965 to work, a newer version of Go seems to be required.

Thanks, and I can confirm it works like a charm on centOS with go1.13 installed from testing-epel-7

<mock-chroot> sh-4.2# go version
go version go1.13 linux/amd64

<mock-chroot> sh-4.2# ./gitea --version
Gitea version 1.10.0+dev-298-ga60d3cb built with GNU Make 3.82, go1.13 : bindata, pam

@irreleph4nt
Copy link

irreleph4nt commented Sep 26, 2019

have the same problem on centos and was able to dissect this Issue to make generate
Can not give the "silver bullet solution" simply because i'm not really (understatement) an go(loang) expert.

somehow the go:generate go run -mod=vendor main.go does not honer the vendor directory in
https://github.com/go-gitea/gitea/blob/master/modules/options/options.go#L7
https://github.com/go-gitea/gitea/blob/master/modules/public/public.go#L21
https://github.com/go-gitea/gitea/blob/master/modules/templates/templates.go#L7

And causes go to pull in the dependency's, which in a buildchroot without network capability throws all those errors.

the workaround I use is to omit make generate and generate the bindata manually with a simple script in rhe (rpm) spec-file:

for i in options public templates; do 
   pushd modules/$i
   go run -mod=vendor main.go
   popd
done

Hi,

Sorry for the edit spam, but the above alone won't make 1.9.3 build for CentOS. I had to amend this:

  1. You actually have to call the workaround like this to work: GO111MODULE=on go run -mod=vendor main.go
  2. You need to remove the -i switch in the Makefile on line GOFLAGS := -i -v
  3. Building with debug info does not work so you have to disable it via %global

@markVnl
Copy link

markVnl commented Sep 27, 2019

@irreleph4nt
Until the fixes land in a gittea release && compatible GO version lands in epel-7 i use this spec file
(please feel free to comment)
https://github.com/markVnl/gitea-SPEC/tree/next

test_build @copr:
https://copr.fedorainfracloud.org/coprs/markvnl/gitea/

@go-gitea go-gitea locked and limited conversation to collaborators Nov 24, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
6 participants