go-gitea / gitea

Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD
https://gitea.com
MIT License
44.76k stars 5.47k forks source link

Can not build anymore since version 1.9.0 #7997

Closed ecsgh closed 5 years ago

ecsgh commented 5 years ago

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 commented 5 years ago

Which version of go did you use?

ecsgh commented 5 years ago

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 commented 5 years ago

I think https://github.com/go-gitea/gitea/commit/87404d7c0b0ff42be73398c86f5356959dc7b632 should fix the problem.

lunny commented 5 years ago

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

sapk commented 5 years ago

@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 commented 5 years ago

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 commented 5 years ago

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 https://github.com/go-gitea/gitea/blob/171b3598778a1ecd0a921c71ed6755bfef68f7f0/modules/public/public.go#L21

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

ecsgh commented 5 years ago

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 commented 5 years ago

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 commented 5 years ago

@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 commented 5 years ago

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/bbolt@v1.3.2: unknown revision v1.3.2 [ 31s] go: github.com/RoaringBitmap/roaring@v0.4.7: unknown revision v0.4.7 [ 31s] go: github.com/ethantkoenig/rupture@v0.0.0-20180203182544-0a76f03a811a: 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/i18n@v0.0.0-20171114194641-b64d33658966: 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/xormstore@v1.0.0: unknown revision v1.0.0 [ 31s] go: finding github.com/glycerine/goconvey v0.0.0-20190315024820-982ee783a72e [ 31s] go: github.com/cznic/strutil@v0.0.0-20181122101858-275e90344537: 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/text@v0.3.2: 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/b@v0.0.0-20181122101859-a26611c4d92d: 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/barcode@v0.0.0-20161226211916-fe0f26ff6d26: 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/asn1-ber.v1@v1.0.0-20150924051756-4e86f4367175: 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/httpdown@v0.0.0-20160323221027-a3b1354551a2: 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/inject@v0.0.0-20160627170012-d8a0b8677191: 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/jwt-go@v3.2.0+incompatible: unknown revision v3.2.0 [ 31s] go: github.com/shurcooL/httpfs@v0.0.0-20190527155220-6a4d4a70508b: 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/binding@v0.0.0-20160711225916-9440f336b443: 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/stack@v0.0.0-20160209184415-751773369052: 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/segment@v0.0.0-20160105220820-db70c57796cc: 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/go-billy.v4@v4.3.0: 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/vellum@v0.0.0-20190111184608-e91b68ff3efe: 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/com@v0.0.0-20190321035513-0fed4efef755: 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/cache@v0.0.0-20151013081102-561735312776: 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/subset@v0.0.0-20150612182917-8dac2c3c4870: 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/ini.v1@v1.42.0: 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/vfsgen@v0.0.0-20181202132449-6a9ea43bcacd: 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/csrf@v0.0.0-20180426211211-503617c6b372: 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/goconvey@v0.0.0-20190315024820-982ee783a72e: 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/go-shellquote@v0.0.0-20170619183022-cd60e84ee657: 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/freeport@v0.0.0-20150612182905-d4adf43b75b9: 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/bitset@v0.0.0-20180426185212-8ce1146b8621: 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/dingtalk_webhook@v0.0.0-20171025031554-e3534c89ef96: 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/ensure@v0.0.0-20160127193407-b4ab57deab51: 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/otp@v0.0.0-20160912161815-54653902c20e: 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/cors@v0.0.0-20190309005821-6fd6a9bfe14e9: 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/yaml.v2@v2.2.2: 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/mmap-go@v0.0.0-20170320065105-0bce6a688712: 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/nodb@v0.0.0-20160621015157-fc1ef06ad4af: 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/clock@v0.0.0-20150410010913-600d898af40a: 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/quotedprintable.v3@v3.0.0-20150716171945-2caba252f4dc: 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/goth@v1.49.0: 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/msgp@v0.0.0-20180516164116-c8cf64dff200: 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/go-sqlite3@v1.10.0: unknown revision v1.10.0 [ 31s] go: github.com/steveyen/gtreap@v0.0.0-20150807155958-0abe01ef9be2: 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/go-git.v4@v4.12.0: 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/core@v0.6.3: 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/go-unsnap-stream@v0.0.0-20180323001048-9f0cb55181dd: 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/context@v1.1.1: unknown revision v1.1.1 [ 31s] go: finding github.com/issue9/identicon v0.0.0-20160320065130-d36b54562f4c [ 31s] go: github.com/gliderlabs/ssh@v0.1.4: unknown revision v0.1.4 [ 31s] go: gopkg.in/editorconfig/editorconfig-core-go.v1@v1.2.0: 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/i18n@v0.0.0-20160612092837-ef57533c3b0f: 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/v2@v2.0.0: 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/oauth2@v0.0.0-20181101160152-c453e0c75759: 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/bigfft@v0.0.0-20190321074620-2f0d2b0e0001: 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/bleve@v0.0.0-20190214220507-05d86ea8f6e3: 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/session@v0.0.0-20190131233854-0a0a789bf193: 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/testify.v1@v1.2.2: 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/go-isatty@v0.0.7: unknown revision v0.0.7 [ 31s] go: golang.org/x/tools@v0.0.0-20190618163018-fdf1049a943a: 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/core@v0.6.0: 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/go-mssqldb@v0.0.0-20180315180555-6a30f4e59a44: 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/cutter@v0.2.2: unknown revision v0.2.2 [ 31s] go: github.com/couchbase/gomemcached@v0.0.0-20181122193126-5125a94a666c: 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/identicon@v0.0.0-20160320065130-d36b54562f4c: 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/speakeasy@v0.1.0: 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/stats@v0.0.0-20151006221625-1b76add642e4: 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/blevex@v0.0.0-20180227211930-4b158bb555a3: 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/goutils@v0.0.0-20180530154633-e865a1461c8a: 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/net@v0.0.0-20190613194153-d28f0bde5980: 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/redis.v2@v2.3.2: 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/cron@v0.0.0-20160810035002-7f3990acf183: 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/bufio.v1@v1.0.0-20140618132640-567b2bfa514e: 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/gomemcache@v0.0.0-20160117192205-fb1f79c6b65a: 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/cae@v0.0.0-20160715032808-c6aac99ea2ca: 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/goorgeous@v0.0.0-20170901132237-098da33fde5f: 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/godotenv@v1.3.0: unknown revision v1.3.0 [ 31s] go: finding github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d [ 31s] go: github.com/emirpasic/gods@v1.12.0: 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/chardet@v0.0.0-20120816061221-3af4cd4741ca: 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/bbolt@v1.3.2: 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/gomail.v2@v2.0.0-20160411212932-81ebce5c23df: 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/resize@v0.0.0-20160724205520-891127d8d1b5: 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/v24@v24.0.1: 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/go-cmp@v0.3.0: unknown revision v0.3.0 [ 31s] go: finding github.com/facebookgo/grace v0.0.0-20160926231715-5729e484473f [ 31s] go: github.com/sergi/go-diff@v1.0.0: unknown revision v1.0.0 [ 31s] go: github.com/klauspost/crc32@v0.0.0-20161016154125-cb6bfca970f6: 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/go-oci8@v0.0.0-20190320171441-14ba190cf52d: 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/pam@v0.0.0-20151204160544-02ccfbfaf0cc: 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/macaron.v1@v1.3.2: 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/goconvey@v0.0.0-20190306220146-200a235640ff: 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/assert@v1.3.2: unknown revision v1.3.2 [ 31s] go: finding github.com/philhofer/fwd v1.0.0 [ 31s] go: github.com/PuerkitoBio/goquery@v0.0.0-20170324135448-ed7d758e9a34: 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/mysql@v1.4.1: 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/u2f@v1.0.0: unknown revision v1.0.0 [ 31s] go: strk.kbt.io/projects/go/libravatar@v0.0.0-20160628055650-5eed7bff870a: 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/go-crypto@v0.0.0-20170605145657-00ac4db533f6: 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/blackfriday@v0.0.0-20180428102519-11635eb403ff: 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/go.uuid@v1.2.0: unknown revision v1.2.0 [ 31s] go: golang.org/x/crypto@v0.0.0-20190618222545-ea8f1a30c443: 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/go-snappy@v0.0.0-20140704025258-d8f7bb82a96d: 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/mathutil@v0.0.0-20181122101859-297441e03548: 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/redis@v6.15.2+incompatible: unknown revision v6.15.2 [ 31s] go: github.com/philhofer/fwd@v1.0.0: unknown revision v1.0.0 [ 31s] go: golang.org/x/sys@v0.0.0-20190618155005-516e3c20635f: 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/chardet@v0.0.0-20150115103509-2404f7772561: 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/grace@v0.0.0-20160926231715-5729e484473f: 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/html2text@v0.0.0-20160923191438-8fb95d837f7d: 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/xorm@v0.7.3-0.20190620151208-f1b4f8368459: 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/levelqueue@v0.0.0-20190217115915-02b525a4418e: 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/sanitized_anchor_name@v0.0.0-20160918041101-1dba4b3954bc: 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/cascadia@v0.0.0-20161224141413-349dd0209470: 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/builder@v0.3.5: 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/testfixtures.v2@v2.5.0: 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/go-porterstemmer@v0.0.0-20141230013033-23a2c8e5cf1f: 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/ldap.v3@v3.0.2: 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/testify@v1.3.0: unknown revision v1.3.0 [ 32s] go: github.com/lib/pq@v1.1.0: 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/go-version@v0.0.0-20190308113854-92cdf37c5b75: 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/compress@v0.0.0-20161025140425-8df558b6cb6f: 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/bluemonday@v0.0.0-20161012083705-f77f16ffc87a: 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/smat@v0.0.0-20160514031455-90eadee771ae: 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/go-couchbase@v0.0.0-20190117181324-d904413d884d: 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/cpuid@v0.0.0-20160302075316-09cded8978dc: 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/cli@v1.20.0: unknown revision v1.20.0 [ 32s] go: github.com/go-macaron/captcha@v0.0.0-20190710000913-8dc5911259df: 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/openid-go@v0.0.0-20160914080427-2c050d2dae53: 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/toml@v0.3.1: unknown revision v0.3.1 [ 32s] go: github.com/jmhodges/levigo@v1.0.0: unknown revision v1.0.0 [ 32s] go: github.com/prometheus/client_golang@v0.9.3: unknown revision v0.9.3 [ 32s] go: github.com/go-macaron/toolbox@v0.0.0-20180818072302-a77f45a7ce90: 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/paginater@v0.0.0-20151104151617-7748a72e0141: 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/gorocksdb@v0.0.0-20181010114359-8752a9433481: 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/log@v0.0.0-20160921050905-7887c61bf0de: 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/bbolt@v1.3.2: 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/builder@v0.3.5: 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/godotenv@v1.3.0: unknown revision v1.3.0 [ 33s] go: finding github.com/tecbot/gorocksdb v0.0.0-20181010114359-8752a9433481 [ 33s] go: github.com/go-sql-driver/mysql@v1.4.1: unknown revision v1.4.1 [ 33s] go: finding github.com/smartystreets/goconvey v0.0.0-20190306220146-200a235640ff [ 33s] go: github.com/jaytaylor/html2text@v0.0.0-20160923191438-8fb95d837f7d: 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/go-git.v4@v4.12.0: 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/csrf@v0.0.0-20180426211211-503617c6b372: 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/go-crypto@v0.0.0-20170605145657-00ac4db533f6: 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/identicon@v0.0.0-20160320065130-d36b54562f4c: 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/com@v0.0.0-20190321035513-0fed4efef755: 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/cascadia@v0.0.0-20161224141413-349dd0209470: 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/bluemonday@v0.0.0-20161012083705-f77f16ffc87a: 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/gomail.v2@v2.0.0-20160411212932-81ebce5c23df: 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/gtreap@v0.0.0-20150807155958-0abe01ef9be2: 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/go-cmp@v0.3.0: unknown revision v0.3.0 [ 33s] go: finding github.com/RoaringBitmap/roaring v0.4.7 [ 33s] go: github.com/tecbot/gorocksdb@v0.0.0-20181010114359-8752a9433481: 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/testfixtures.v2@v2.5.0: 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/fwd@v1.0.0: unknown revision v1.0.0 [ 33s] go: github.com/RoaringBitmap/roaring@v0.4.7: 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/goth@v1.49.0: unknown revision v1.49.0 [ 33s] go: finding github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75 [ 33s] go: github.com/yohcop/openid-go@v0.0.0-20160914080427-2c050d2dae53: 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/resize@v0.0.0-20160724205520-891127d8d1b5: 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/go-version@v0.0.0-20190308113854-92cdf37c5b75: 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/testify.v1@v1.2.2: 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/ssh@v0.1.4: unknown revision v0.1.4 [ 33s] go: finding github.com/jmhodges/levigo v1.0.0 [ 33s] go: github.com/smartystreets/goconvey@v0.0.0-20190306220146-200a235640ff: 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/levigo@v1.0.0: unknown revision v1.0.0 [ 33s] go: finding github.com/blevesearch/go-porterstemmer v0.0.0-20141230013033-23a2c8e5cf1f [ 33s] go: github.com/Unknwon/cae@v0.0.0-20160715032808-c6aac99ea2ca: 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/i18n@v0.0.0-20160612092837-ef57533c3b0f: 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/go-oci8@v0.0.0-20190320171441-14ba190cf52d: 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/stats@v0.0.0-20151006221625-1b76add642e4: 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/levelqueue@v0.0.0-20190217115915-02b525a4418e: 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/crypto@v0.0.0-20190618222545-ea8f1a30c443: 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/net@v0.0.0-20190613194153-d28f0bde5980: 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/context@v1.1.1: unknown revision v1.1.1 [ 33s] go: finding github.com/cznic/strutil v0.0.0-20181122101858-275e90344537 [ 33s] go: github.com/go-macaron/cors@v0.0.0-20190309005821-6fd6a9bfe14e9: 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/vfsgen@v0.0.0-20181202132449-6a9ea43bcacd: 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/mmap-go@v0.0.0-20170320065105-0bce6a688712: 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/msgp@v0.0.0-20180516164116-c8cf64dff200: 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/redis@v6.15.2+incompatible: unknown revision v6.15.2 [ 33s] go: finding github.com/blevesearch/bleve v0.0.0-20190214220507-05d86ea8f6e3 [ 33s] go: github.com/russross/blackfriday@v0.0.0-20180428102519-11635eb403ff: 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/smat@v0.0.0-20160514031455-90eadee771ae: 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/go-porterstemmer@v0.0.0-20141230013033-23a2c8e5cf1f: 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/sys@v0.0.0-20190618155005-516e3c20635f: 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/quotedprintable.v3@v3.0.0-20150716171945-2caba252f4dc: 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/gomemcache@v0.0.0-20160117192205-fb1f79c6b65a: 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/cli@v1.20.0: unknown revision v1.20.0 [ 33s] go: finding github.com/satori/go.uuid v1.2.0 [ 33s] go: github.com/couchbase/goutils@v0.0.0-20180530154633-e865a1461c8a: 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/asn1-ber.v1@v1.0.0-20150924051756-4e86f4367175: 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/chardet@v0.0.0-20150115103509-2404f7772561: 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/go-mssqldb@v0.0.0-20180315180555-6a30f4e59a44: 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/captcha@v0.0.0-20190710000913-8dc5911259df: 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/strutil@v0.0.0-20181122101858-275e90344537: 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/bbolt@v1.3.2: unknown revision v1.3.2 [ 33s] go: gopkg.in/bufio.v1@v1.0.0-20140618132640-567b2bfa514e: 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/text@v0.3.2: 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/go-sqlite3@v1.10.0: 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/go.uuid@v1.2.0: unknown revision v1.2.0 [ 33s] go: finding github.com/emirpasic/gods v1.12.0 [ 33s] go: github.com/go-macaron/toolbox@v0.0.0-20180818072302-a77f45a7ce90: 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/nodb@v0.0.0-20160621015157-fc1ef06ad4af: 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/core@v0.6.3: 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/cpuid@v0.0.0-20160302075316-09cded8978dc: 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/mathutil@v0.0.0-20181122101859-297441e03548: 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/goconvey@v0.0.0-20190315024820-982ee783a72e: 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/log@v0.0.0-20160921050905-7887c61bf0de: 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/bleve@v0.0.0-20190214220507-05d86ea8f6e3: 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/testify@v1.3.0: unknown revision v1.3.0 [ 33s] go: finding github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 [ 33s] go: github.com/bgentry/speakeasy@v0.1.0: unknown revision v0.1.0 [ 33s] go: finding github.com/remyoudompheng/bigfft v0.0.0-20190321074620-2f0d2b0e0001 [ 33s] go: github.com/emirpasic/gods@v1.12.0: unknown revision v1.12.0 [ 33s] go: finding github.com/gogits/cron v0.0.0-20160810035002-7f3990acf183 [ 33s] go: github.com/remyoudompheng/bigfft@v0.0.0-20190321074620-2f0d2b0e0001: 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/b@v0.0.0-20181122101859-a26611c4d92d: 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/u2f@v1.0.0: unknown revision v1.0.0 [ 33s] go: golang.org/x/tools@v0.0.0-20190618163018-fdf1049a943a: 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/blevex@v0.0.0-20180227211930-4b158bb555a3: 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/freeport@v0.0.0-20150612182905-d4adf43b75b9: 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/xorm@v0.7.3-0.20190620151208-f1b4f8368459: 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/rupture@v0.0.0-20180203182544-0a76f03a811a: 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/assert@v1.3.2: unknown revision v1.3.2 [ 33s] go: finding github.com/BurntSushi/toml v0.3.1 [ 33s] go: github.com/mattn/go-isatty@v0.0.7: unknown revision v0.0.7 [ 33s] go: finding github.com/blevesearch/segment v0.0.0-20160105220820-db70c57796cc [ 33s] go: github.com/facebookgo/grace@v0.0.0-20160926231715-5729e484473f: 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/ensure@v0.0.0-20160127193407-b4ab57deab51: 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/stack@v0.0.0-20160209184415-751773369052: 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/cron@v0.0.0-20160810035002-7f3990acf183: 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/cutter@v0.2.2: unknown revision v0.2.2 [ 33s] go: finding github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96 [ 33s] go: github.com/willf/bitset@v0.0.0-20180426185212-8ce1146b8621: 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/session@v0.0.0-20190131233854-0a0a789bf193: 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/gomemcached@v0.0.0-20181122193126-5125a94a666c: 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/toml@v0.3.1: unknown revision v0.3.1 [ 33s] go: gopkg.in/ini.v1@v1.42.0: 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/go-couchbase@v0.0.0-20190117181324-d904413d884d: 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/xormstore@v1.0.0: unknown revision v1.0.0 [ 33s] go: gopkg.in/ldap.v3@v3.0.2: 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/segment@v0.0.0-20160105220820-db70c57796cc: 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/editorconfig-core-go.v1@v1.2.0: 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/go-shellquote@v0.0.0-20170619183022-cd60e84ee657: 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/v2@v2.0.0: 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/cache@v0.0.0-20151013081102-561735312776: 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/subset@v0.0.0-20150612182917-8dac2c3c4870: 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/client_golang@v0.9.3: unknown revision v0.9.3 [ 33s] go: finding github.com/boombuler/barcode v0.0.0-20161226211916-fe0f26ff6d26 [ 33s] go: gopkg.in/macaron.v1@v1.3.2: 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/go-snappy@v0.0.0-20140704025258-d8f7bb82a96d: 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/clock@v0.0.0-20150410010913-600d898af40a: 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/go-diff@v1.0.0: unknown revision v1.0.0 [ 33s] go: finding github.com/dgrijalva/jwt-go v3.2.0+incompatible [ 33s] go: github.com/saintfish/chardet@v0.0.0-20120816061221-3af4cd4741ca: 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/dingtalk_webhook@v0.0.0-20171025031554-e3534c89ef96: 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/jwt-go@v3.2.0+incompatible: unknown revision v3.2.0 [ 33s] go: gopkg.in/yaml.v2@v2.2.2: 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/core@v0.6.0: unknown revision v0.6.0 [ 33s] go: gopkg.in/src-d/go-billy.v4@v4.3.0: 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/goorgeous@v0.0.0-20170901132237-098da33fde5f: 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/oauth2@v0.0.0-20181101160152-c453e0c75759: 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/v24@v24.0.1: 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/i18n@v0.0.0-20171114194641-b64d33658966: 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/compress@v0.0.0-20161025140425-8df558b6cb6f: 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/otp@v0.0.0-20160912161815-54653902c20e: 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/barcode@v0.0.0-20161226211916-fe0f26ff6d26: 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/pam@v0.0.0-20151204160544-02ccfbfaf0cc: 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/binding@v0.0.0-20160711225916-9440f336b443: 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/goquery@v0.0.0-20170324135448-ed7d758e9a34: 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/libravatar@v0.0.0-20160628055650-5eed7bff870a: 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/redis.v2@v2.3.2: 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/pq@v1.1.0: unknown revision v1.1.0 [ 33s] go: github.com/klauspost/crc32@v0.0.0-20161016154125-cb6bfca970f6: 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/httpfs@v0.0.0-20190527155220-6a4d4a70508b: 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/go-unsnap-stream@v0.0.0-20180323001048-9f0cb55181dd: 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/inject@v0.0.0-20160627170012-d8a0b8677191: 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/httpdown@v0.0.0-20160323221027-a3b1354551a2: 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/sanitized_anchor_name@v0.0.0-20160918041101-1dba4b3954bc: 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/vellum@v0.0.0-20190111184608-e91b68ff3efe: 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/paginater@v0.0.0-20151104151617-7748a72e0141: 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/net@v0.0.0-20190613194153-d28f0bde5980: 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/fwd@v1.0.0: unknown revision v1.0.0 [ 34s] go: finding github.com/urfave/cli v1.20.0 [ 34s] go: github.com/emirpasic/gods@v1.12.0: unknown revision v1.12.0 [ 34s] go: gopkg.in/gomail.v2@v2.0.0-20160411212932-81ebce5c23df: 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/go-snappy@v0.0.0-20140704025258-d8f7bb82a96d: 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/testfixtures.v2@v2.5.0: 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/bbolt@v1.3.2: unknown revision v1.3.2 [ 34s] go: finding github.com/klauspost/compress v0.0.0-20161025140425-8df558b6cb6f [ 34s] go: github.com/jmhodges/levigo@v1.0.0: unknown revision v1.0.0 [ 34s] go: finding github.com/willf/bitset v0.0.0-20180426185212-8ce1146b8621 [ 34s] go: github.com/Unknwon/cae@v0.0.0-20160715032808-c6aac99ea2ca: 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/core@v0.6.0: unknown revision v0.6.0 [ 34s] go: finding github.com/google/go-github/v24 v24.0.1 [ 34s] go: github.com/urfave/cli@v1.20.0: unknown revision v1.20.0 [ 34s] go: finding github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd [ 34s] go: github.com/msteinert/pam@v0.0.0-20151204160544-02ccfbfaf0cc: 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/ldap.v3@v3.0.2: 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/com@v0.0.0-20190321035513-0fed4efef755: 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/mmap-go@v0.0.0-20170320065105-0bce6a688712: 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/roaring@v0.4.7: unknown revision v0.4.7 [ 34s] go: mvdan.cc/xurls/v2@v2.0.0: 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/cutter@v0.2.2: 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/v24@v24.0.1: unknown revision v24.0.1 [ 34s] go: finding github.com/mattn/go-isatty v0.0.7 [ 34s] go: github.com/yohcop/openid-go@v0.0.0-20160914080427-2c050d2dae53: 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/i18n@v0.0.0-20160612092837-ef57533c3b0f: 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/blackfriday@v0.0.0-20180428102519-11635eb403ff: 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/bitset@v0.0.0-20180426185212-8ce1146b8621: 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/subset@v0.0.0-20150612182917-8dac2c3c4870: 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/yaml.v2@v2.2.2: 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/go-sqlite3@v1.10.0: unknown revision v1.10.0 [ 34s] go: finding github.com/tecbot/gorocksdb v0.0.0-20181010114359-8752a9433481 [ 34s] go: github.com/glycerine/go-unsnap-stream@v0.0.0-20180323001048-9f0cb55181dd: 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/gorocksdb@v0.0.0-20181010114359-8752a9433481: 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/compress@v0.0.0-20161025140425-8df558b6cb6f: 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/gtreap@v0.0.0-20150807155958-0abe01ef9be2: 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/go-isatty@v0.0.7: unknown revision v0.0.7 [ 34s] go: go.etcd.io/bbolt@v1.3.2: 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/sys@v0.0.0-20190618155005-516e3c20635f: 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/inject@v0.0.0-20160627170012-d8a0b8677191: 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/asn1-ber.v1@v1.0.0-20150924051756-4e86f4367175: 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/godotenv@v1.3.0: unknown revision v1.3.0 [ 34s] go: finding github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5 [ 34s] go: github.com/go-macaron/csrf@v0.0.0-20180426211211-503617c6b372: 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/go-shellquote@v0.0.0-20170619183022-cd60e84ee657: 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/gomemcache@v0.0.0-20160117192205-fb1f79c6b65a: 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/core@v0.6.3: 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/go-porterstemmer@v0.0.0-20141230013033-23a2c8e5cf1f: 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/ssh@v0.1.4: unknown revision v0.1.4 [ 34s] go: finding github.com/go-macaron/toolbox v0.0.0-20180818072302-a77f45a7ce90 [ 34s] go: gopkg.in/bufio.v1@v1.0.0-20140618132640-567b2bfa514e: 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/redis.v2@v2.3.2: 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/client_golang@v0.9.3: unknown revision v0.9.3 [ 34s] go: finding github.com/tinylib/msgp v0.0.0-20180516164116-c8cf64dff200 [ 34s] go: github.com/go-macaron/toolbox@v0.0.0-20180818072302-a77f45a7ce90: 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/assert@v1.3.2: unknown revision v1.3.2 [ 34s] go: finding github.com/issue9/identicon v0.0.0-20160320065130-d36b54562f4c [ 34s] go: github.com/lunny/log@v0.0.0-20160921050905-7887c61bf0de: 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/msgp@v0.0.0-20180516164116-c8cf64dff200: 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/go-mssqldb@v0.0.0-20180315180555-6a30f4e59a44: 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/smat@v0.0.0-20160514031455-90eadee771ae: 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/resize@v0.0.0-20160724205520-891127d8d1b5: 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/toml@v0.3.1: unknown revision v0.3.1 [ 34s] go: xorm.io/builder@v0.3.5: 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/binding@v0.0.0-20160711225916-9440f336b443: 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/go-couchbase@v0.0.0-20190117181324-d904413d884d: 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/crc32@v0.0.0-20161016154125-cb6bfca970f6: 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/httpdown@v0.0.0-20160323221027-a3b1354551a2: 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/testify.v1@v1.2.2: 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/go-version@v0.0.0-20190308113854-92cdf37c5b75: 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/session@v0.0.0-20190131233854-0a0a789bf193: 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/bigfft@v0.0.0-20190321074620-2f0d2b0e0001: 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/levelqueue@v0.0.0-20190217115915-02b525a4418e: 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/sanitized_anchor_name@v0.0.0-20160918041101-1dba4b3954bc: 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/pq@v1.1.0: unknown revision v1.1.0 [ 34s] go: finding github.com/satori/go.uuid v1.2.0 [ 34s] go: github.com/mattn/go-oci8@v0.0.0-20190320171441-14ba190cf52d: 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/go.uuid@v1.2.0: unknown revision v1.2.0 [ 34s] go: finding github.com/facebookgo/stats v0.0.0-20151006221625-1b76add642e4 [ 34s] go: github.com/issue9/identicon@v0.0.0-20160320065130-d36b54562f4c: 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/grace@v0.0.0-20160926231715-5729e484473f: 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/rupture@v0.0.0-20180203182544-0a76f03a811a: 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/go-cmp@v0.3.0: unknown revision v0.3.0 [ 34s] go: finding github.com/markbates/goth v1.49.0 [ 34s] go: github.com/facebookgo/stack@v0.0.0-20160209184415-751773369052: 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/crypto@v0.0.0-20190618222545-ea8f1a30c443: 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/tools@v0.0.0-20190618163018-fdf1049a943a: 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/goth@v1.49.0: unknown revision v1.49.0 [ 34s] go: finding github.com/go-macaron/cors v0.0.0-20190309005821-6fd6a9bfe14e9 [ 35s] go: github.com/Unknwon/i18n@v0.0.0-20171114194641-b64d33658966: 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/goconvey@v0.0.0-20190315024820-982ee783a72e: 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/cors@v0.0.0-20190309005821-6fd6a9bfe14e9: 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/go-billy.v4@v4.3.0: 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/freeport@v0.0.0-20150612182905-d4adf43b75b9: 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/oauth2@v0.0.0-20181101160152-c453e0c75759: 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/ini.v1@v1.42.0: 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/text@v0.3.2: 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/editorconfig-core-go.v1@v1.2.0: 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/cache@v0.0.0-20151013081102-561735312776: 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/chardet@v0.0.0-20150115103509-2404f7772561: 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/stats@v0.0.0-20151006221625-1b76add642e4: 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/mysql@v1.4.1: unknown revision v1.4.1 [ 35s] go: finding github.com/bgentry/speakeasy v0.1.0 [ 35s] go: github.com/shurcooL/vfsgen@v0.0.0-20181202132449-6a9ea43bcacd: 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/libravatar@v0.0.0-20160628055650-5eed7bff870a: 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/b@v0.0.0-20181122101859-a26611c4d92d: 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/quotedprintable.v3@v3.0.0-20150716171945-2caba252f4dc: 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/speakeasy@v0.1.0: unknown revision v0.1.0 [ 35s] go: finding github.com/go-xorm/xorm v0.7.3-0.20190620151208-f1b4f8368459 [ 35s] go: github.com/lunny/nodb@v0.0.0-20160621015157-fc1ef06ad4af: 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/mathutil@v0.0.0-20181122101859-297441e03548: 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/strutil@v0.0.0-20181122101858-275e90344537: 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/macaron.v1@v1.3.2: 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/xorm@v0.7.3-0.20190620151208-f1b4f8368459: 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/chardet@v0.0.0-20120816061221-3af4cd4741ca: 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/bluemonday@v0.0.0-20161012083705-f77f16ffc87a: 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/jwt-go@v3.2.0+incompatible: unknown revision v3.2.0 [ 35s] go: finding github.com/tstranex/u2f v1.0.0 [ 35s] go: github.com/tstranex/u2f@v1.0.0: unknown revision v1.0.0 [ 35s] go: finding github.com/sergi/go-diff v1.0.0 [ 35s] go: github.com/pquerna/otp@v0.0.0-20160912161815-54653902c20e: 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/go-diff@v1.0.0: unknown revision v1.0.0 [ 35s] go: finding github.com/couchbase/vellum v0.0.0-20190111184608-e91b68ff3efe [ 35s] go: github.com/andybalholm/cascadia@v0.0.0-20161224141413-349dd0209470: 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/cpuid@v0.0.0-20160302075316-09cded8978dc: 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/goorgeous@v0.0.0-20170901132237-098da33fde5f: 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/captcha@v0.0.0-20190710000913-8dc5911259df: 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/go-git.v4@v4.12.0: 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/xormstore@v1.0.0: unknown revision v1.0.0 [ 35s] go: finding github.com/blevesearch/bleve v0.0.0-20190214220507-05d86ea8f6e3 [ 35s] go: github.com/couchbase/vellum@v0.0.0-20190111184608-e91b68ff3efe: 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/barcode@v0.0.0-20161226211916-fe0f26ff6d26: 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/redis@v6.15.2+incompatible: unknown revision v6.15.2 [ 35s] go: finding github.com/gorilla/context v1.1.1 [ 35s] go: github.com/jaytaylor/html2text@v0.0.0-20160923191438-8fb95d837f7d: 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/testify@v1.3.0: unknown revision v1.3.0 [ 35s] go: finding github.com/Unknwon/paginater v0.0.0-20151104151617-7748a72e0141 [ 35s] go: github.com/gogits/cron@v0.0.0-20160810035002-7f3990acf183: 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/clock@v0.0.0-20150410010913-600d898af40a: 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/httpfs@v0.0.0-20190527155220-6a4d4a70508b: 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/bleve@v0.0.0-20190214220507-05d86ea8f6e3: 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/go-crypto@v0.0.0-20170605145657-00ac4db533f6: 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/context@v1.1.1: unknown revision v1.1.1 [ 35s] go: github.com/PuerkitoBio/goquery@v0.0.0-20170324135448-ed7d758e9a34: 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/paginater@v0.0.0-20151104151617-7748a72e0141: 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/blevex@v0.0.0-20180227211930-4b158bb555a3: 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/gomemcached@v0.0.0-20181122193126-5125a94a666c: 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/dingtalk_webhook@v0.0.0-20171025031554-e3534c89ef96: 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/ensure@v0.0.0-20160127193407-b4ab57deab51: 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/goutils@v0.0.0-20180530154633-e865a1461c8a: 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/segment@v0.0.0-20160105220820-db70c57796cc: 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/goconvey@v0.0.0-20190306220146-200a235640ff: 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 commented 5 years ago

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.

markVnl commented 5 years ago

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 commented 5 years ago

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

typeless commented 5 years ago

@markVnl Which version of Go do you use?

markVnl commented 5 years ago

@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 commented 5 years ago

@markVnl For https://github.com/go-gitea/gitea/commit/dd3ba9bb6be38e2a03a6e218b936e75ff554b080#diff-b67911656ef5d18c4ae36cb6741b7965 to work, a newer version of Go seems to be required.

markVnl commented 5 years ago

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 commented 5 years ago

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 commented 5 years ago

@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/