You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A potential fix would be to remove the dependency on the outdated github.com/aslakhellesoy/gox repository and enumerate cross compilation targets directly within the default.mk file
Steps to Reproduce (for bugs)
run make from the /gherkin sub directory
Your Environment
Version used: 15.0.2
Operating System and version: MacOS 10.14.6
The text was updated successfully, but these errors were encountered:
Our docker image uses go 1.13.8 - I guess ubuntu apt packages are lagging behind a bit.
Eventually it will catch up, and then our builds will fail in docker too.
I agree we should drop the dependency on gox - the main repo (which my fork is uptodate with) appears to be abandoned. Enumerating the targets sounds better.
Summary
Gherkin Build fails on Darwin/386 cross compile for go
Expected Behavior
make should build a go executable
Current Behavior
Build fails when attempting to make
`1 errors occurred:
--> darwin/386 error: exit status 2
Stderr: cmd/go: unsupported GOOS/GOARCH pair darwin/386
make[1]: *** [dist/cucumber-gherkin-darwin-amd64] Error 1`
Possible Solution
This appears to be related to the following issue with an upstream dependency within the go makefile default.mk
mitchellh/gox#146
A potential fix would be to remove the dependency on the outdated github.com/aslakhellesoy/gox repository and enumerate cross compilation targets directly within the default.mk file
Steps to Reproduce (for bugs)
run make from the /gherkin sub directory
Your Environment
The text was updated successfully, but these errors were encountered: