File tree Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 5
5
/docs /site
6
6
bin
7
7
build
8
+ go.local.sum
Original file line number Diff line number Diff line change @@ -11,13 +11,16 @@ GO_LDFLAGS=-ldflags "-X main.version=$(VERSION) \
11
11
-X main.buildHash=$(GITCOMMIT ) \
12
12
-X main.buildDate=$(BUILDDATE ) "
13
13
14
- .PHONY : all test
14
+ .PHONY : all test local-test
15
15
16
16
all : test
17
17
18
18
test : # # Run code tests
19
19
go test -v ./...
20
20
21
+ local-test : # # Run code tests using go.local.mod file
22
+ go test -modfile=go.local.mod -v ./...
23
+
21
24
help : # # Show this help.
22
25
@grep -F -h " ##" $(MAKEFILE_LIST ) | grep -F -v grep | sed -e ' s/\\$$//' \
23
26
| awk -F' [:#]' ' {print $$1 = sprintf("%-30s", $$1), $$4}'
Original file line number Diff line number Diff line change
1
+ module github.com/aws-controllers-k8s/s3-controller
2
+
3
+ go 1.14
4
+
5
+ replace github.com/aws-controllers-k8s/runtime => ../runtime
6
+
7
+ require (
8
+ github.com/aws-controllers-k8s/runtime v0.0.4
9
+ github.com/aws/aws-sdk-go v1.37.4
10
+ github.com/go-logr/logr v0.1.0
11
+ github.com/google/go-cmp v0.3.1
12
+ github.com/spf13/pflag v1.0.5
13
+ k8s.io/api v0.18.2
14
+ k8s.io/apimachinery v0.18.6
15
+ k8s.io/client-go v0.18.2
16
+ sigs.k8s.io/controller-runtime v0.6.0
17
+ )
You can’t perform that action at this time.
0 commit comments