@@ -7,18 +7,18 @@ When setup correctly, you should have a GOROOT and GOPATH set in the environment
77After you set up the Go development environment, use ` go get ` to check out
88` swarmkit ` :
99
10- go get -d github.com/docker /swarmkit
10+ go get -d github.com/moby /swarmkit/v2@latest
1111
1212This command installs the source repository into the ` GOPATH ` .
1313
1414It is not mandatory to use ` go get ` to checkout the SwarmKit project. However,
1515for these instructions to work, you need to check out the project to the
16- correct subdirectory of the ` GOPATH ` : ` $GOPATH/src/github.com/docker /swarmkit ` .
16+ correct subdirectory of the ` GOPATH ` : ` $GOPATH/src/github.com/moby /swarmkit ` .
1717
1818### Repeatable Builds
1919
2020For the full development experience, one should ` cd ` into
21- ` $GOPATH/src/github.com/docker /swarmkit ` . From there, the regular ` go `
21+ ` $GOPATH/src/github.com/moby /swarmkit ` . From there, the regular ` go `
2222commands, such as ` go test ` , should work per package (please see
2323[ Developing] ( #developing ) if they don't work).
2424
@@ -41,35 +41,35 @@ build:
4141 🐳 vet
4242 🐳 lint
4343 🐳 build
44- github.com/docker /swarmkit
45- github.com/docker /swarmkit/vendor/github.com/davecgh/go-spew/spew
46- github.com/docker /swarmkit/vendor/github.com/pmezard/go-difflib/difflib
47- github.com/docker /swarmkit/cmd/protoc-gen-gogoswarm
48- github.com/docker /swarmkit/cmd/swarm-bench
49- github.com/docker /swarmkit/cmd/swarmctl
50- github.com/docker /swarmkit/vendor/github.com/stretchr/testify/assert
51- github.com/docker /swarmkit/ca/testutils
52- github.com/docker /swarmkit/cmd/swarmd
53- github.com/docker /swarmkit/vendor/code.cloudfoundry.org/clock/fakeclock
54- github.com/docker /swarmkit/vendor/github.com/stretchr/testify/require
55- github.com/docker /swarmkit/manager/state/raft/testutils
56- github.com/docker /swarmkit/manager/testcluster
57- github.com/docker /swarmkit/protobuf/plugin/deepcopy/test
58- github.com/docker /swarmkit/protobuf/plugin/raftproxy/test
44+ github.com/moby /swarmkit
45+ github.com/moby /swarmkit/vendor/github.com/davecgh/go-spew/spew
46+ github.com/moby /swarmkit/vendor/github.com/pmezard/go-difflib/difflib
47+ github.com/moby /swarmkit/cmd/protoc-gen-gogoswarm
48+ github.com/moby /swarmkit/cmd/swarm-bench
49+ github.com/moby /swarmkit/cmd/swarmctl
50+ github.com/moby /swarmkit/vendor/github.com/stretchr/testify/assert
51+ github.com/moby /swarmkit/ca/testutils
52+ github.com/moby /swarmkit/cmd/swarmd
53+ github.com/moby /swarmkit/vendor/code.cloudfoundry.org/clock/fakeclock
54+ github.com/moby /swarmkit/vendor/github.com/stretchr/testify/require
55+ github.com/moby /swarmkit/manager/state/raft/testutils
56+ github.com/moby /swarmkit/manager/testcluster
57+ github.com/moby /swarmkit/protobuf/plugin/deepcopy/test
58+ github.com/moby /swarmkit/protobuf/plugin/raftproxy/test
5959 🐳 test
60- ? github.com/docker /swarmkit [no test files]
61- ? github.com/docker /swarmkit [no test files]
62- ok github.com/docker /swarmkit/agent 2.264s
63- ok github.com/docker /swarmkit/agent/exec 1.055s
64- ok github.com/docker /swarmkit/agent/exec/container 1.094s
65- ? github.com/docker /swarmkit/api [no test files]
66- ? github.com/docker /swarmkit/api/duration [no test files]
67- ? github.com/docker /swarmkit/api/timestamp [no test files]
68- ok github.com/docker /swarmkit/ca 15.634s
60+ ? github.com/moby /swarmkit [no test files]
61+ ? github.com/moby /swarmkit [no test files]
62+ ok github.com/moby /swarmkit/agent 2.264s
63+ ok github.com/moby /swarmkit/agent/exec 1.055s
64+ ok github.com/moby /swarmkit/agent/exec/container 1.094s
65+ ? github.com/moby /swarmkit/api [no test files]
66+ ? github.com/moby /swarmkit/api/duration [no test files]
67+ ? github.com/moby /swarmkit/api/timestamp [no test files]
68+ ok github.com/moby /swarmkit/ca 15.634s
6969 ...
70- ok github.com/docker /swarmkit/protobuf/plugin/raftproxy/test 1.084s
71- ok github.com/docker /swarmkit/protobuf/ptypes 1.025s
72- ? github.com/docker /swarmkit/version [no test files]
70+ ok github.com/moby /swarmkit/protobuf/plugin/raftproxy/test 1.084s
71+ ok github.com/moby /swarmkit/protobuf/ptypes 1.025s
72+ ? github.com/moby /swarmkit/version [no test files]
7373
7474The above provides a repeatable build using the contents of the vendored
7575` ./vendor ` directory. This includes formatting, vetting, linting, building,
0 commit comments