Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
Add svcat to Makefile (#1683)
Browse files Browse the repository at this point in the history
* Add svcat to Makefile

* Add svcat to travis build

* Add phony to svcat make target
  • Loading branch information
jberkhahn authored and pmorie committed Jan 25, 2018
1 parent 45b1013 commit 1cf0dd9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cache:
directories:
- .glide
script:
- make verify build build-integration build-e2e test images
- make verify build build-integration build-e2e test images svcat
deploy:
skip_cleanup: true
provider: script
Expand Down
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -375,3 +375,10 @@ release-push-%:
$(MAKE) clean-bin
$(MAKE) ARCH=$* build
$(MAKE) ARCH=$* push

# SvCat Kubectl plugin stuff
############################
.PHONY: $(BINDIR)/svcat
svcat: $(BINDIR)/svcat
$(BINDIR)/svcat: .init .generate_files cmd/svcat/main.go
$(DOCKER_CMD) $(GO_BUILD) -o $@ $(SC_PKG)/cmd/svcat

0 comments on commit 1cf0dd9

Please sign in to comment.