go.mod: github.com/containerd/aufs v0.0.0-20210316121734-20793ff83c97
full diff: ffdde14902...20793ff83c
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
22
vendor/github.com/containerd/aufs/.golangci.yml
generated
vendored
Normal file
22
vendor/github.com/containerd/aufs/.golangci.yml
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
linters:
|
||||
enable:
|
||||
- structcheck
|
||||
- varcheck
|
||||
- staticcheck
|
||||
- unconvert
|
||||
- gofmt
|
||||
- goimports
|
||||
- golint
|
||||
- ineffassign
|
||||
- vet
|
||||
- unused
|
||||
- misspell
|
||||
disable:
|
||||
- errcheck
|
||||
|
||||
issues:
|
||||
include:
|
||||
- EXC0002
|
||||
|
||||
run:
|
||||
timeout: 2m
|
||||
20
vendor/github.com/containerd/aufs/.travis.yml
generated
vendored
20
vendor/github.com/containerd/aufs/.travis.yml
generated
vendored
@@ -1,20 +0,0 @@
|
||||
dist: bionic
|
||||
language: go
|
||||
go:
|
||||
- 1.13.x
|
||||
|
||||
install:
|
||||
- go mod vendor
|
||||
- pushd ..; go get -u github.com/vbatts/git-validation; popd
|
||||
- pushd ..; go get -u github.com/kunalkushwaha/ltag; popd
|
||||
|
||||
before_script:
|
||||
- pushd ..; git clone https://github.com/containerd/project; popd
|
||||
|
||||
script:
|
||||
- DCO_VERBOSITY=-q ../project/script/validate/dco
|
||||
- ../project/script/validate/fileheader ../project/
|
||||
- go test -v -race -covermode=atomic -coverprofile=coverage.txt ./...
|
||||
|
||||
after_success:
|
||||
- bash <(curl -s https://codecov.io/bash)
|
||||
4
vendor/github.com/containerd/aufs/README.md
generated
vendored
4
vendor/github.com/containerd/aufs/README.md
generated
vendored
@@ -1,7 +1,9 @@
|
||||
# aufs snapshotter
|
||||
|
||||
[](https://travis-ci.org/containerd/aufs)
|
||||
[](https://pkg.go.dev/github.com/containerd/aufs)
|
||||
[](https://github.com/containerd/aufs/actions?query=workflow%3ACI)
|
||||
[](https://codecov.io/gh/containerd/aufs)
|
||||
[](https://goreportcard.com/report/github.com/containerd/aufs)
|
||||
|
||||
|
||||
AUFS implementation of the snapshot interface for containerd.
|
||||
|
||||
1
vendor/github.com/containerd/aufs/aufs.go
generated
vendored
1
vendor/github.com/containerd/aufs/aufs.go
generated
vendored
@@ -38,7 +38,6 @@ import (
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
|
||||
var (
|
||||
dirperm sync.Once
|
||||
dirpermEnabled bool
|
||||
|
||||
1
vendor/github.com/containerd/aufs/plugin/plugin.go
generated
vendored
1
vendor/github.com/containerd/aufs/plugin/plugin.go
generated
vendored
@@ -23,7 +23,6 @@ import (
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
|
||||
// Config represents configuration for the zfs plugin
|
||||
type Config struct {
|
||||
// Root directory for the plugin
|
||||
|
||||
Reference in New Issue
Block a user