From f3af3d83c273e57a0200dd1c59dc5eac8ce39b27 Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Tue, 28 Aug 2018 17:35:58 -0700 Subject: [PATCH] Makefile: update import paths to "go.etcd.io" Signed-off-by: Gyuho Lee --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 17c1b7283..eefab125d 100644 --- a/Makefile +++ b/Makefile @@ -102,7 +102,7 @@ compile-with-docker-test: $(info GO_VERSION: $(GO_VERSION)) docker run \ --rm \ - --mount type=bind,source=`pwd`,destination=/go/src/github.com/coreos/etcd \ + --mount type=bind,source=`pwd`,destination=/go/src/go.etcd.io/etcd \ gcr.io/etcd-development/etcd-test:go$(GO_VERSION) \ /bin/bash -c "GO_BUILD_FLAGS=-v ./build && ./bin/etcd --version" @@ -158,7 +158,7 @@ docker-test: docker run \ --rm \ $(TMP_DIR_MOUNT_FLAG) \ - --mount type=bind,source=`pwd`,destination=/go/src/github.com/coreos/etcd \ + --mount type=bind,source=`pwd`,destination=/go/src/go.etcd.io/etcd \ gcr.io/etcd-development/etcd-test:go$(GO_VERSION) \ /bin/bash -c "$(TEST_OPTS) ./test 2>&1 | tee test-$(TEST_SUFFIX).log" ! egrep "(--- FAIL:|DATA RACE|panic: test timed out|appears to have leaked)" -B50 -A10 test-$(TEST_SUFFIX).log @@ -172,7 +172,7 @@ docker-test-coverage: docker run \ --rm \ $(TMP_DIR_MOUNT_FLAG) \ - --mount type=bind,source=`pwd`,destination=/go/src/github.com/coreos/etcd \ + --mount type=bind,source=`pwd`,destination=/go/src/go.etcd.io/etcd \ gcr.io/etcd-development/etcd-test:go$(GO_VERSION) \ /bin/bash -c "COVERDIR=covdir PASSES='build build_cov cov' ./test 2>&1 | tee docker-test-coverage-$(TEST_SUFFIX).log && /codecov -t 6040de41-c073-4d6f-bbf8-d89256ef31e1" ! egrep "(--- FAIL:|DATA RACE|panic: test timed out|appears to have leaked)" -B50 -A10 docker-test-coverage-$(TEST_SUFFIX).log