mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-02-07 12:30:48 +00:00
Update k8s.io/kubernetes to v1.8. Update k8s.io/client-go to v5.0.0 Update k8s.io/apimachinery to match Pull in k8s.io/api release-1.8 branch Pull in k8s.io/code-generator release-1.8 branch Signed-off-by: Andy Goldstein <andy.goldstein@gmail.com>
17 lines
584 B
Makefile
17 lines
584 B
Makefile
|
|
build:
|
|
go get
|
|
go install
|
|
cd generate-gnostic; go get; go install
|
|
cd apps/disco; go get; go install
|
|
cd apps/report; go get; go install
|
|
cd apps/petstore-builder; go get; go install
|
|
cd plugins/gnostic-summary; go get; go install
|
|
cd plugins/gnostic-analyze; go get; go install
|
|
cd plugins/gnostic-go-generator; go get; go install
|
|
rm -f $(GOPATH)/bin/gnostic-go-client $(GOPATH)/bin/gnostic-go-server
|
|
ln -s $(GOPATH)/bin/gnostic-go-generator $(GOPATH)/bin/gnostic-go-client
|
|
ln -s $(GOPATH)/bin/gnostic-go-generator $(GOPATH)/bin/gnostic-go-server
|
|
cd extensions/sample; make
|
|
|