Hi guys,
I’ve applied steps from BUILDING.md file and executed command: go build cmd/drone-agent/*
The result was:
./agent.go:90:29: cannot use conn (type *"github.com/drone/drone/vendor/google.golang.org/grpc".ClientConn) as type *"github.com/drone/drone/vendor/github.com/cncd/pipeline/vendor/google.golang.org/grpc".ClientConn in argument to rpc.NewGrpcClient
Then applied simple glide description to improve dependencies management. The glide file:
package: github.com/drone/drone
import:
- package: github.com/Sirupsen/logrus
repo: git@github.com:sirupsen/logrus.git
- package: github.com/drone/drone-ui/dist
- package: golang.org/x/net/context
- package: golang.org/x/net/context/ctxhttp
- package: github.com/golang/protobuf/proto
- package: github.com/golang/protobuf/protoc-gen-go
and executed the same command and unfortunately the result was exactly the same as afore mentioned.
Could you, please, help me setup local environment or point out documentation?