Sachin Walia

Results 13 comments of Sachin Walia

@blindpirate yes vendor directory did get created and I see all the dependencies there. However for some reason goBuild is not picking up dependencies from that folder.

If I run it from the root it's not able to recognize even the application code. Following is the error ``` Main.go:12:2: cannot find package "github.com/Sirupsen/logrus" in any of: /usr/local/Cellar/go/1.10.2/libexec/src/github.com/Sirupsen/logrus...

Here is contents of my gradle build file if it helps: ``` buildscript { apply from: "https://some-url/common_buildscript.gradle", to: buildscript repositories { maven { url "https://artifactory.someorg.com/artifactory/ext-release-local" } maven { url "https://artifactory.someorg.com/artifactory/libs-snapshot-local"...

upon `"ls"` I see following directory: `src/gitlab.eng.someorg.com/depname` inside this directory `somesvc -> ../../../../..`

I am getting an error: `-bash: /Users/admin/projects/somesvc/.gogradle/project_gopath/src/gitlab.eng.someorg.com/depname/somesvc/app/repo: No such file or directory ` let me try with an older version of golang and see if that is an issue.

Sorry my mistake. the `"ls"` command shows the contents of` "app/repo".` I tried to build with golang all the way to 1.9.6 and still same error.

Meaning to say `"ls"` command is correctly resolving to the folder. What is surprising is I am getting the same error in local environment (Mac OS), Gitlab CI (Linux), Jenkins...

let me try with one of the sample that you have provided. Would you need something more than that?

Hi I used following example to recreate this issue: https://github.com/gogradle/examples/tree/master/typical-build attached modified typical-build example where issue is reproduced locally. Same error is reported. ``` > Configure project : Found go...

Yes. you are right. Adding this line works for this project. I am not sure what is special in my project that it is failing.