@@ -59,10 +59,10 @@ ci: precommit check-clean-work-tree test-with-coverage test-386
59
59
60
60
.PHONY : test-gocql
61
61
test-gocql :
62
- @if ./.circleci /should_build.sh gocql; then \
62
+ @if ./tools /should_build.sh gocql; then \
63
63
set -e; \
64
64
docker run --name cass-integ --rm -p 9042:9042 -d cassandra:3; \
65
- CMD=cassandra IMG_NAME=cass-integ ./.circleci /wait.sh; \
65
+ CMD=cassandra IMG_NAME=cass-integ ./tools /wait.sh; \
66
66
(cd instrumentation/github.com/gocql/gocql/otelgocql && \
67
67
$(GOTEST_WITH_COVERAGE ) . && \
68
68
go tool cover -html=coverage.txt -o coverage.html); \
@@ -71,10 +71,10 @@ test-gocql:
71
71
72
72
.PHONY : test-mongo-driver
73
73
test-mongo-driver :
74
- @if ./.circleci /should_build.sh mongo-driver; then \
74
+ @if ./tools /should_build.sh mongo-driver; then \
75
75
set -e; \
76
76
docker run --name mongo-integ --rm -p 27017:27017 -d mongo; \
77
- CMD=mongo IMG_NAME=mongo-integ ./.circleci /wait.sh; \
77
+ CMD=mongo IMG_NAME=mongo-integ ./tools /wait.sh; \
78
78
(cd instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo && \
79
79
$(GOTEST_WITH_COVERAGE ) . && \
80
80
go tool cover -html=coverage.txt -o coverage.html); \
@@ -83,10 +83,10 @@ test-mongo-driver:
83
83
84
84
.PHONY : test-gomemcache
85
85
test-gomemcache :
86
- @if ./.circleci /should_build.sh gomemcache; then \
86
+ @if ./tools /should_build.sh gomemcache; then \
87
87
set -e; \
88
88
docker run --name gomemcache-integ --rm -p 11211:11211 -d memcached; \
89
- CMD=gomemcache IMG_NAME=gomemcache-integ ./.circleci /wait.sh; \
89
+ CMD=gomemcache IMG_NAME=gomemcache-integ ./tools /wait.sh; \
90
90
(cd instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache && \
91
91
$(GOTEST_WITH_COVERAGE ) . && \
92
92
go tool cover -html=coverage.txt -o coverage.html); \
0 commit comments