You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 9, 2020. It is now read-only.
- set -e; for pkg in $PKGS; do go test -race -coverprofile=profile.out -covermode=atomic $pkg; if [[ -f profile.out ]]; then cat profile.out >> coverage.txt; rm profile.out; fi; done
26
+
after_success:
27
+
- codeclimate-test-reporter < coverage.txt
28
+
# YAML alias, for settings shared across the simpler builds
29
+
- &simple-test
30
+
go: 1.7.x
31
+
stage: test
32
+
install: skip
33
+
env:
34
+
- DEPTESTBYPASS501=1
35
+
script: go test -race $(go list ./... | grep -v vendor)
36
+
- <<: *simple-test
13
37
go: tip
14
-
- os: osx
38
+
- <<: *simple-test
39
+
os: osx
15
40
go: 1.8.x
16
-
env:
17
-
# Flip bit to bypass tests - see dep#501 for more information
18
-
- DEPTESTBYPASS501=1
19
-
install:
20
-
- echo "This is an override of the default install deps step in travis."
21
-
before_script:
22
-
# OSX as of El Capitan sets an exit trap that interacts poorly with our
- go get -v honnef.co/go/tools/cmd/{gosimple,staticcheck}
30
-
- npm install -g codeclimate-test-reporter
31
-
script:
32
-
- go build -v ./cmd/dep
33
-
- go vet $PKGS
34
-
- staticcheck $PKGS
35
-
#- ./hack/validate-gofmt.bash
36
-
- ./hack/validate-vendor.bash
37
-
- gosimple $PKGS
38
-
#- go test -race $PKGS
39
-
- go build ./hack/licenseok
40
-
- set -e; for pkg in $PKGS; do go test -race -coverprofile=profile.out -covermode=atomic $pkg; if [[ -f profile.out ]]; then cat profile.out >> coverage.txt; rm profile.out; fi; done
Copy file name to clipboardexpand all lines: FAQ.md
+125-5
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Please contribute to the FAQ! Found an explanation in an issue or pull request h
7
7
Summarize the question and quote the reply, linking back to the original comment.
8
8
9
9
*[What is the difference between Gopkg.toml (the "manifest") and Gopkg.lock (the "lock")?](#what-is-the-difference-between-gopkgtoml-the-manifest-and-gopkglock-the-lock)
10
-
*[When should I use dependencies, overrides or required in the manifest?](#when-should-i-use-dependencies-overrides-required-or-ignored-in-the-manifest)
10
+
*[When should I use `constraint`, `override``required`, or `ignored` in the Gopkg.toml?](#when-should-i-use-constraint-override-required-or-ignored-in-gopkgtoml)
11
11
*[What is a direct or transitive dependency?](#what-is-a-direct-or-transitive-dependency)
12
12
*[Should I commit my vendor directory?](#should-i-commit-my-vendor-directory)
13
13
*[Why is it `dep ensure` instead of `dep install`?](#why-is-it-dep-ensure-instead-of-dep-install)
@@ -18,6 +18,12 @@ Summarize the question and quote the reply, linking back to the original comment
18
18
*[Can I put the manifest and lock in the vendor directory?](#can-i-put-the-manifest-and-lock-in-the-vendor-directory)
19
19
*[Why did dep use a different revision for package X instead of the revision in the lock file?](#why-did-dep-use-a-different-revision-for-package-x-instead-of-the-revision-in-the-lock-file)
20
20
*[Why is `dep` slow?](#why-is-dep-slow)
21
+
*[How does `dep` handle symbolic links?](#how-does-dep-handle-symbolic-links)
22
+
*[How do I roll releases that `dep` will be able to use?](#how-do-i-roll-releases-that-dep-will-be-able-to-use)
23
+
*[How does `dep` decide what version of a dependency to use?](#how-does-dep-decide-what-version-of-a-dependency-to-use)
24
+
*[What semver version should I use?](#what-semver-version-should-i-use)
25
+
*[Is it OK to make backwards-incompatible changes now?](#is-it-ok-to-make-backwards-incompatible-changes-now)
26
+
*[My dependers don't use `dep` yet. What should I do?](#my-dependers-dont-use-dep-yet-what-should-i-do)
21
27
22
28
## What is the difference between Gopkg.toml (the "manifest") and Gopkg.lock (the "lock")?
23
29
@@ -26,10 +32,10 @@ Summarize the question and quote the reply, linking back to the original comment
26
32
> This flexibility is important because it allows us to provide easy commands (e.g. `dep ensure -update`) that can manage an update process for you, within the constraints you specify, AND because it allows your project, when imported by someone else, to collaboratively specify the constraints for your own dependencies.
27
33
-[@sdboyer in #281](https://github.com/golang/dep/issues/281#issuecomment-284118314)
28
34
29
-
## When should I use dependencies, overrides, required, or ignored in the manifest?
35
+
## When should I use `constraint`, `override`, `required`, or `ignored` in `Gopkg.toml`?
30
36
31
-
* Use `dependencies` to constrain a [direct dependency](#what-is-a-direct-or-transitive-dependency) to a specific branch, version range, revision, or specify an alternate source such as a fork.
32
-
* Use `overrides` to constrain a [transitive dependency](#what-is-a-direct-or-transitive-dependency). See [How do I constrain a transitive dependency's version?](#how-do-i-constrain-a-transitive-dependencys-version) for more details on how overrides differ from dependencies. Overrides should be used cautiously, sparingly, and temporarily.
37
+
* Use `constraint` to constrain a [direct dependency](#what-is-a-direct-or-transitive-dependency) to a specific branch, version range, revision, or specify an alternate source such as a fork.
38
+
* Use `override` to constrain a [transitive dependency](#what-is-a-direct-or-transitive-dependency). See [How do I constrain a transitive dependency's version?](#how-do-i-constrain-a-transitive-dependencys-version) for more details on how overrides differ from dependencies. Overrides should be used cautiously, sparingly, and temporarily.
33
39
* Use `required` to explicitly add a dependency that is not imported directly or transitively, for example a development package used for code generation.
34
40
* Use `ignored` to ignore a package and any of that package's unique dependencies.
35
41
@@ -113,7 +119,7 @@ behave differently:
113
119
Overrides are also discussed with some visuals in [the gps docs](https://github.com/sdboyer/gps/wiki/gps-for-Implementors#overrides).
114
120
115
121
## `dep` deleted my files in the vendor directory!
116
-
First, sorry! 😞 We hope you were able to recover your files...
122
+
If you just ran `dep init`, there should be a copy of your original vendor directory named `_vendor-TIMESTAMP` in your project root. The other commands do not make a backup before modifying the vendor directory.
117
123
118
124
> dep assumes complete control of vendor/, and may indeed blow things away if it feels like it.
119
125
-[@peterbourgon in #206](https://github.com/golang/dep/issues/206#issuecomment-277139419)
@@ -178,4 +184,118 @@ gateway to all of these improvements.
178
184
179
185
There's another major performance issue that's much harder - the process of picking versions itself is an NP-complete problem in `dep`'s current design. This is a much trickier problem 😜
180
186
187
+
## How does `dep` handle symbolic links?
181
188
189
+
> because we're not crazy people who delight in inviting chaos into our lives, we need to work within one GOPATH at a time.
190
+
-[@sdboyer in #247](https://github.com/golang/dep/pull/247#issuecomment-284181879)
191
+
192
+
Out of convenience, one might create a symlink to a directory within their `GOPATH`, e.g. `ln -s ~/go/src/github.com/golang/dep dep`. When `dep` is invoked it will resolve the current working directory accordingly:
193
+
194
+
- If the cwd is a symlink outside a `GOPATH` and links to directory within a `GOPATH`, or vice versa, `dep` chooses whichever path is within the `GOPATH`. If neither path is within a `GOPATH`, `dep` produces an error.
195
+
- If both the cwd and resolved path are in the same `GOPATH`, an error is thrown since the users intentions and expectations can't be accurately deduced.
196
+
- If the symlink is within a `GOPATH` and the real path is within a *different*`GOPATH` - an error is thrown.
197
+
198
+
This is the only symbolic link support that `dep` really intends to provide. In keeping with the general practices of the `go` tool, `dep` tends to either ignore symlinks (when walking) or copy the symlink itself, depending on the filesystem operation being performed.
199
+
200
+
## How do I roll releases that `dep` will be able to use?
201
+
202
+
In short: make sure you've committed your `Gopkg.toml` and `Gopkg.lock`, then
203
+
just create a tag in your version control system and push it to the canonical
204
+
location. `dep` is designed to work automatically with this sort of metadata
205
+
from `git`, `bzr`, and `hg`.
206
+
207
+
It's strongly preferred that you use [semver](http://semver.org)-compliant tag
208
+
names. We hope to develop documentation soon that describes this more precisely,
209
+
but in the meantime, the [npm](https://docs.npmjs.com/misc/semver) docs match
210
+
our patterns pretty well.
211
+
212
+
## How does `dep` decide what version of a dependency to use?
213
+
214
+
The full algorithm is complex, but the most important thing to understand is
0 commit comments