Skip to content

Commit 26c2b18

Browse files
MrAliasAneurysm9
andauthored
Remove CircleCI config (#513)
Move build scripts to the tools directory. Co-authored-by: Anthony Mirabella <[email protected]>
1 parent 0ca2a70 commit 26c2b18

File tree

4 files changed

+6
-101
lines changed

4 files changed

+6
-101
lines changed

.circleci/config.yml

-95
This file was deleted.

Makefile

+6-6
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ ci: precommit check-clean-work-tree test-with-coverage test-386
5959

6060
.PHONY: test-gocql
6161
test-gocql:
62-
@if ./.circleci/should_build.sh gocql; then \
62+
@if ./tools/should_build.sh gocql; then \
6363
set -e; \
6464
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; \
6666
(cd instrumentation/github.com/gocql/gocql/otelgocql && \
6767
$(GOTEST_WITH_COVERAGE) . && \
6868
go tool cover -html=coverage.txt -o coverage.html); \
@@ -71,10 +71,10 @@ test-gocql:
7171

7272
.PHONY: test-mongo-driver
7373
test-mongo-driver:
74-
@if ./.circleci/should_build.sh mongo-driver; then \
74+
@if ./tools/should_build.sh mongo-driver; then \
7575
set -e; \
7676
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; \
7878
(cd instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo && \
7979
$(GOTEST_WITH_COVERAGE) . && \
8080
go tool cover -html=coverage.txt -o coverage.html); \
@@ -83,10 +83,10 @@ test-mongo-driver:
8383

8484
.PHONY: test-gomemcache
8585
test-gomemcache:
86-
@if ./.circleci/should_build.sh gomemcache; then \
86+
@if ./tools/should_build.sh gomemcache; then \
8787
set -e; \
8888
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; \
9090
(cd instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache && \
9191
$(GOTEST_WITH_COVERAGE) . && \
9292
go tool cover -html=coverage.txt -o coverage.html); \
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)