Browse Source

travis.yml: update "go_import_path" to "go.etcd.io"

Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
Gyuho Lee 7 years ago
parent
commit
591fdac832
1 changed files with 9 additions and 9 deletions
  1. 9 9
      .travis.yml

+ 9 - 9
.travis.yml

@@ -1,5 +1,5 @@
 language: go
 language: go
-go_import_path: github.com/coreos/etcd
+go_import_path: go.etcd.io/etcd
 
 
 sudo: required
 sudo: required
 
 
@@ -74,37 +74,37 @@ script:
     case "${TARGET}" in
     case "${TARGET}" in
       linux-amd64-fmt)
       linux-amd64-fmt)
         docker run --rm \
         docker run --rm \
-          --volume=`pwd`:/go/src/github.com/coreos/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
+          --volume=`pwd`:/go/src/go.etcd.io/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
           /bin/bash -c "GOARCH=amd64 PASSES='fmt bom dep' ./test"
           /bin/bash -c "GOARCH=amd64 PASSES='fmt bom dep' ./test"
         ;;
         ;;
       linux-amd64-integration-1-cpu)
       linux-amd64-integration-1-cpu)
         docker run --rm \
         docker run --rm \
-          --volume=`pwd`:/go/src/github.com/coreos/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
+          --volume=`pwd`:/go/src/go.etcd.io/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
           /bin/bash -c "GOARCH=amd64 CPU=1 PASSES='integration' ./test"
           /bin/bash -c "GOARCH=amd64 CPU=1 PASSES='integration' ./test"
         ;;
         ;;
       linux-amd64-integration-2-cpu)
       linux-amd64-integration-2-cpu)
         docker run --rm \
         docker run --rm \
-          --volume=`pwd`:/go/src/github.com/coreos/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
+          --volume=`pwd`:/go/src/go.etcd.io/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
           /bin/bash -c "GOARCH=amd64 CPU=2 PASSES='integration' ./test"
           /bin/bash -c "GOARCH=amd64 CPU=2 PASSES='integration' ./test"
         ;;
         ;;
       linux-amd64-integration-4-cpu)
       linux-amd64-integration-4-cpu)
         docker run --rm \
         docker run --rm \
-          --volume=`pwd`:/go/src/github.com/coreos/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
+          --volume=`pwd`:/go/src/go.etcd.io/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
           /bin/bash -c "GOARCH=amd64 CPU=4 PASSES='integration' ./test"
           /bin/bash -c "GOARCH=amd64 CPU=4 PASSES='integration' ./test"
         ;;
         ;;
       linux-amd64-functional)
       linux-amd64-functional)
         docker run --rm \
         docker run --rm \
-          --volume=`pwd`:/go/src/github.com/coreos/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
+          --volume=`pwd`:/go/src/go.etcd.io/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
           /bin/bash -c "./build && GOARCH=amd64 PASSES='functional' ./test"
           /bin/bash -c "./build && GOARCH=amd64 PASSES='functional' ./test"
         ;;
         ;;
       linux-amd64-unit)
       linux-amd64-unit)
         docker run --rm \
         docker run --rm \
-          --volume=`pwd`:/go/src/github.com/coreos/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
+          --volume=`pwd`:/go/src/go.etcd.io/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
           /bin/bash -c "GOARCH=amd64 PASSES='unit' ./test"
           /bin/bash -c "GOARCH=amd64 PASSES='unit' ./test"
         ;;
         ;;
       all-build)
       all-build)
         docker run --rm \
         docker run --rm \
-          --volume=`pwd`:/go/src/github.com/coreos/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
+          --volume=`pwd`:/go/src/go.etcd.io/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
           /bin/bash -c "GOARCH=amd64 PASSES='build' ./test \
           /bin/bash -c "GOARCH=amd64 PASSES='build' ./test \
             && GOARCH=386 PASSES='build' ./test \
             && GOARCH=386 PASSES='build' ./test \
             && GO_BUILD_FLAGS='-v' GOOS=darwin GOARCH=amd64 ./build \
             && GO_BUILD_FLAGS='-v' GOOS=darwin GOARCH=amd64 ./build \
@@ -124,7 +124,7 @@ script:
         ;;
         ;;
       linux-386-unit)
       linux-386-unit)
         docker run --rm \
         docker run --rm \
-          --volume=`pwd`:/go/src/github.com/coreos/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
+          --volume=`pwd`:/go/src/go.etcd.io/etcd gcr.io/etcd-development/etcd-test:go${TRAVIS_GO_VERSION} \
           /bin/bash -c "GOARCH=386 PASSES='unit' ./test"
           /bin/bash -c "GOARCH=386 PASSES='unit' ./test"
         ;;
         ;;
     esac
     esac