-
-
Notifications
You must be signed in to change notification settings - Fork 243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pop/Soda doesn't build with vgo #110
Labels
bug
Something isn't working
Comments
The bad Gopkg.lock from #109 is causing this too, so this is basically a dup of #109.
|
rsc
added a commit
to rsc/pop
that referenced
this issue
May 24, 2018
The Gopkg.lock is broken if you use it with dep without an automatic update: ``` $ git clone https://github.com/gobuffalo/pop Cloning into 'pop'... remote: Counting objects: 5500, done. remote: Compressing objects: 100% (14/14), done. remote: Total 5500 (delta 6), reused 12 (delta 5), pack-reused 5481 Receiving objects: 100% (5500/5500), 4.47 MiB | 13.12 MiB/s, done. Resolving deltas: 100% (3129/3129), done. $ cd pop $ dep ensure -vendor-only $ go build fizz/bubbler.go:31:30: cannot use "github.com/gobuffalo/pop/vendor/github.com/mattn/anko/vm".NewEnv() (type *"github.com/gobuffalo/pop/vendor/github.com/mattn/anko/vm".Env) as type *"github.com/mattn/anko/vm".Env in argument to core.Import $ ``` This CL fixes the Gopkg.lock: ``` $ dep ensure $ go build $ ``` Fixes gobuffalo#109. Fixes gobuffalo#110. Probably also gobuffalo/buffalo#1075.
This was referenced May 24, 2018
Merged
markbates
pushed a commit
that referenced
this issue
May 24, 2018
The Gopkg.lock is broken if you use it with dep without an automatic update: ``` $ git clone https://github.com/gobuffalo/pop Cloning into 'pop'... remote: Counting objects: 5500, done. remote: Compressing objects: 100% (14/14), done. remote: Total 5500 (delta 6), reused 12 (delta 5), pack-reused 5481 Receiving objects: 100% (5500/5500), 4.47 MiB | 13.12 MiB/s, done. Resolving deltas: 100% (3129/3129), done. $ cd pop $ dep ensure -vendor-only $ go build fizz/bubbler.go:31:30: cannot use "github.com/gobuffalo/pop/vendor/github.com/mattn/anko/vm".NewEnv() (type *"github.com/gobuffalo/pop/vendor/github.com/mattn/anko/vm".Env) as type *"github.com/mattn/anko/vm".Env in argument to core.Import $ ``` This CL fixes the Gopkg.lock: ``` $ dep ensure $ go build $ ``` Fixes #109. Fixes #110. Probably also gobuffalo/buffalo#1075.
When you close #109, should be able to close this too. |
@rsc @spf13 here is a simple, reproducible demo of Go modules refusing to use any version of Pop greater than |
markbates
changed the title
Soda doesn't build with vgo
Pop/Soda doesn't build with vgo
Aug 10, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Related to:
#109
gobuffalo/buffalo#1074
/cc @rsc
The text was updated successfully, but these errors were encountered: