mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-19 00:17:54 +00:00
vendoring: update information around prune
The new `dep` now automatically prunes, and has deprecated the command line prune command. Update the doc to reflect this. Also add a note that we like to use the `non-go = true` option for prune as well if we can. Fixes: #20 Signed-off-by: Graham whaley <graham.whaley@intel.com>
This commit is contained in:
parent
cc79dafeea
commit
f44599d3f1
25
VENDORING.md
25
VENDORING.md
@ -36,7 +36,6 @@ $ export PATH=$GOPATH/bin:$PATH
|
|||||||
|
|
||||||
- `dep init`: Initialize a new project with manifest and lock files.
|
- `dep init`: Initialize a new project with manifest and lock files.
|
||||||
- `dep ensure`: Ensure a dependency is safely vendored in the project.
|
- `dep ensure`: Ensure a dependency is safely vendored in the project.
|
||||||
- `dep prune`: Prune the vendor tree of unused packages.
|
|
||||||
|
|
||||||
## Vendoring use cases
|
## Vendoring use cases
|
||||||
|
|
||||||
@ -83,19 +82,37 @@ The following is what `Gopkg.toml` should look like:
|
|||||||
# [[override]]
|
# [[override]]
|
||||||
# name = "github.com/x/y"
|
# name = "github.com/x/y"
|
||||||
# version = "2.4.0"
|
# version = "2.4.0"
|
||||||
|
#
|
||||||
|
# [prune]
|
||||||
|
# non-go = false
|
||||||
|
# go-tests = true
|
||||||
|
# unused-packages = true
|
||||||
```
|
```
|
||||||
|
|
||||||
This file contains all the information you need to modify it properly.
|
This file contains all the information you need to modify it properly.
|
||||||
|
|
||||||
At this point you can vendor any package needed from your code.
|
At this point you can vendor any package needed from your code.
|
||||||
|
|
||||||
|
### Pruning non-go files
|
||||||
|
|
||||||
|
`dep` provides the feature to remove all non-go files from your vendor tree
|
||||||
|
during its prune phase. By default this is not enabled, but generally for
|
||||||
|
Kata Containers repositories, we do enable this feature. If possible, modify your
|
||||||
|
`[prune]` section to enable this feature:
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[prune]
|
||||||
|
non-go = true
|
||||||
|
go-tests = true
|
||||||
|
unused-packages = true
|
||||||
|
```
|
||||||
|
|
||||||
### Vendor a newly imported package
|
### Vendor a newly imported package
|
||||||
|
|
||||||
The following case describes a situation when you add new code that relies
|
The following case describes a situation when you add new code that relies
|
||||||
on a package that has never been imported (e.g. `github.com/foo/bar`):
|
on a package that has never been imported (e.g. `github.com/foo/bar`):
|
||||||
```bash
|
```bash
|
||||||
$ dep ensure
|
$ dep ensure
|
||||||
$ dep prune
|
|
||||||
```
|
```
|
||||||
|
|
||||||
At this point, only the required files will be copied into `vendor`.
|
At this point, only the required files will be copied into `vendor`.
|
||||||
@ -158,7 +175,6 @@ updating the vendoring version:
|
|||||||
Let `dep` update the vendoring by relying on this new revision:
|
Let `dep` update the vendoring by relying on this new revision:
|
||||||
```bash
|
```bash
|
||||||
$ dep ensure
|
$ dep ensure
|
||||||
$ dep prune
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Remove a vendored package
|
### Remove a vendored package
|
||||||
@ -169,7 +185,6 @@ removes the vendored package from `vendor` directory and from
|
|||||||
`Gopkg.lock`:
|
`Gopkg.lock`:
|
||||||
```bash
|
```bash
|
||||||
$ dep ensure
|
$ dep ensure
|
||||||
$ dep prune
|
|
||||||
```
|
```
|
||||||
|
|
||||||
If a constraint is set in `Gopkg.toml`, it is your responsibility to remove
|
If a constraint is set in `Gopkg.toml`, it is your responsibility to remove
|
||||||
|
Loading…
Reference in New Issue
Block a user