File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ if [ "$EXPECT_LINK_INFO" = "dynamic" ]; then export GO_TAGS="-tags dynamic" && c
4
4
for dir in kafka examples ; do (cd $dir && go install $GO_TAGS ./...) ; done
5
5
if [[ -f .do_lint ]]; then golint -set_exit_status ./examples/... ./kafka/... ./kafkatest/... ./soaktest/... ./schemaregistry/...; fi
6
6
for dir in kafka schemaregistry ; do (cd $dir && go test -coverprofile=" $coverage_profile " -timeout 180s -v $GO_TAGS ./...) ; done
7
+ if [[ $( command codesign) ]]; then codesign -f -s - $( which go-kafkacat) ; fi
7
8
go-kafkacat --help
8
9
library-version
9
10
(library-version | grep " $EXPECT_LINK_INFO " ) || (echo " Incorrect linkage, expected $EXPECT_LINK_INFO " ; false)
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ for dir in kafka examples ; do (cd $dir && go install $GO_TAGS ./...) ; done
5
5
if [[ -f .do_lint ]]; then golint -set_exit_status ./examples/... ./kafka/... ./kafkatest/... ./soaktest/... ./schemaregistry/...; fi
6
6
for dir in kafka schemaregistry ; do (cd $dir && go test -coverprofile=" $coverage_profile " -timeout 180s -v $GO_TAGS ./...) ; done
7
7
(cd kafka && go test -v $GO_TAGS -timeout 3600s -run ^TestIntegration$ -docker.needed=true ; cd ..)
8
+ if [[ $( command codesign) ]]; then codesign -f -s - $( which go-kafkacat) ; fi
8
9
go-kafkacat --help
9
10
library-version
10
11
(library-version | grep " $EXPECT_LINK_INFO " ) || (echo " Incorrect linkage, expected $EXPECT_LINK_INFO " ; false)
You can’t perform that action at this time.
0 commit comments