Skip to content

Commit

Permalink
Merge pull request #25 from jharrington22/update-repo-for-ci
Browse files Browse the repository at this point in the history
Update Makefile for CI and remove PR check script
  • Loading branch information
vkareh authored Aug 27, 2020
2 parents 387347d + f27197b commit 3c321c9
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 30 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ export GOPROXY=https://proxy.golang.org
# Disable CGO so that we always generate static binaries:
export CGO_ENABLED=0

.PHONY: moactl
# Unset GOFLAG for CI and ensure we've got nothing accidently set
unexport GOFLAGS

.PHONY: build
moactl: generate
go build .

Expand Down Expand Up @@ -49,6 +52,7 @@ clean:

.PHONY: generate
generate:
go get github.com/go-bindata/go-bindata/...
go-bindata -nometadata -nocompress -pkg assets -o ./assets/bindata.go ./templates/...

.PHONY: docs
Expand Down
14 changes: 14 additions & 0 deletions OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
reviewers:
- jharrington22
- vkareh
- igoihman
- jeremyeder
- NautiluX
approvers:
- jharrington22
- vkareh
- igoihman
- jeremyeder
maintainers:
- jharrington22
- vkareh
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ require (
github.com/aws/aws-sdk-go v1.29.17
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/dustin/go-humanize v1.0.0
github.com/go-bindata/go-bindata v3.1.2+incompatible // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
github.com/golang/mock v1.4.3
github.com/mattn/go-colorable v0.1.7 // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
github.com/go-bindata/go-bindata v3.1.2+incompatible h1:5vjJMVhowQdPzjE1LdxyFF7YFTXg5IgGVW4gBr5IbvE=
github.com/go-bindata/go-bindata v3.1.2+incompatible/go.mod h1:xK8Dsgwmeed+BBsSy2XTopBn/8uK2HWuGSnA11C3Joo=
github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
github.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgOZ7o=
Expand Down
29 changes: 0 additions & 29 deletions pr_check.sh

This file was deleted.

0 comments on commit 3c321c9

Please sign in to comment.