solo-io / squash

The debugger for microservices
https://squash.solo.io
Apache License 2.0
1.74k stars 102 forks source link

Installation Issue #197

Closed maminio closed 5 years ago

maminio commented 5 years ago

From your BUILDFILE.md, when I run : go get github.com/solo-io/squash I get can't load package: package github.com/solo-io/squash: no Go files in /Users/******/golang/src/github.com/solo-io/squash

mitchdraft commented 5 years ago

Hi @maminio, thanks for pointing out the issue. I think you're referring to:

    # Download the source by using go get
    go get github.com/solo-io/squash

    # or by using git clone
    # mkdir -p $GOPATH/src/github.com/solo-io
    # cd $GOPATH/src/github.com/solo-io
    # git clone https://github.com/solo-io/squash.git

    cd $GOPATH/src/github.com/solo-io/squash
    git checkout -b master

go get must not be working since we moved all the go scripts out of the root directory

I think the git clone workflow should work

I use a subset of the steps our CI uses, as defined in cloudbuild.yaml, the BUILDFILE.md is intended as a "getting started" guide.

If you have a chance to try it out, please feel free to submit a PR with your workflow.

Otherwise I will update this soon

mitchdraft commented 5 years ago

docs have been updated https://github.com/solo-io/squash/blob/master/BUILDING.md