Skip to content

Commit

Permalink
add glide for examples
Browse files Browse the repository at this point in the history
  • Loading branch information
brianshannan-wf committed Apr 18, 2018
1 parent 94e131e commit d92af5b
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
Pull requests should be made against the 'develop' branch, not master.

@Workiva/messaging-pp @Workiva/product2
13 changes: 13 additions & 0 deletions examples/go/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

.PHONY: all
all: install

# Installs dependencies while sym linking the local frugal into the
# vendor folder so local changes can be easily tested
.PHONY: install
install:
rm -rf vendor && \
glide install && \
rm -rf vendor/github.com/Workiva/frugal/lib/go && \
ln -s ${GOPATH}/src/github.com/Workiva/frugal/lib/go vendor/github.com/Workiva/frugal/lib/go

22 changes: 22 additions & 0 deletions examples/go/glide.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package: github.com/Workiva/frugal/examples/go
import:
- package: git.apache.org/thrift.git
subpackages:
- lib/go/thrift
version: 0.10.0
- package: github.com/Sirupsen/logrus
repo: [email protected]:/sirupsen/logrus
vcs: git
version: ^v1.0.5
- package: github.com/Workiva/frugal
subpackages:
- lib/go
version: 2.17.0
- package: github.com/nats-io/go-nats
version: 6b6bf392d34d01f57cc563ae123f00c13778bd57
- package: github.com/rs/cors
version: v1.3.0
- package: golang.org/x/sys
version: b126b21c05a91c856b027c16779c12e3bf236954
subpackages:
- unix

0 comments on commit d92af5b

Please sign in to comment.