Skip to content

Commit

Permalink
Merge pull request #2 from IBM/schema-registry-sdk
Browse files Browse the repository at this point in the history
add schemaregistry sdk
  • Loading branch information
prestona authored Sep 16, 2021
2 parents e93ba7f + 409a8a3 commit d66f2a4
Show file tree
Hide file tree
Showing 16 changed files with 7,610 additions and 1,467 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ vendor/
coverage.txt

# example binary
example
examples/adminrest/example
examples/schema/example
14 changes: 11 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Makefile to build the project

COVERAGE = -coverprofile=coverage.txt -covermode=atomic
ADMINREST_EXAMPLE_DIR = examples/adminrest
SCHEMA_EXAMPLE_DIR = examples/schema

all: test lint tidy build

Expand All @@ -25,7 +27,13 @@ tidy:
go mod tidy

clean:
rm -f example
rm -f examples/adminrest/example
rm -f examples/schema/example

build: example.go
go build example.go
adminrest-build: ${ADMINREST_EXAMPLE_DIR}/main.go
cd ${ADMINREST_EXAMPLE_DIR} && go build -o example

schema-build: ${SCHEMA_EXAMPLE_DIR}/main.go
cd ${SCHEMA_EXAMPLE_DIR} && go build -o example

build: adminrest-build schema-build
Loading

0 comments on commit d66f2a4

Please sign in to comment.