Temporarily remove integration/client submodule
Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
parent
332fbd907e
commit
192168038e
4
Makefile
4
Makefile
@ -472,7 +472,7 @@ vendor: ## ensure all the go.mod/go.sum files are up-to-date including vendor/ d
|
|||||||
@$(GO) mod tidy
|
@$(GO) mod tidy
|
||||||
@$(GO) mod vendor
|
@$(GO) mod vendor
|
||||||
@$(GO) mod verify
|
@$(GO) mod verify
|
||||||
@(cd ${ROOTDIR}/integration/client && ${GO} mod tidy)
|
#@(cd ${ROOTDIR}/integration/client && ${GO} mod tidy)
|
||||||
|
|
||||||
verify-vendor: ## verify if all the go.mod/go.sum files are up-to-date
|
verify-vendor: ## verify if all the go.mod/go.sum files are up-to-date
|
||||||
@echo "$(WHALE) $@"
|
@echo "$(WHALE) $@"
|
||||||
@ -482,7 +482,7 @@ verify-vendor: ## verify if all the go.mod/go.sum files are up-to-date
|
|||||||
@(cd ${TMPDIR}/containerd/integration/client && ${GO} mod tidy)
|
@(cd ${TMPDIR}/containerd/integration/client && ${GO} mod tidy)
|
||||||
@diff -r -u -q ${ROOTDIR} ${TMPDIR}/containerd
|
@diff -r -u -q ${ROOTDIR} ${TMPDIR}/containerd
|
||||||
@rm -rf ${TMPDIR}
|
@rm -rf ${TMPDIR}
|
||||||
@${ROOTDIR}/script/verify-go-modules.sh integration/client
|
#@${ROOTDIR}/script/verify-go-modules.sh integration/client
|
||||||
|
|
||||||
|
|
||||||
help: ## this help
|
help: ## this help
|
||||||
|
1
go.mod
1
go.mod
@ -8,6 +8,7 @@ require (
|
|||||||
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0
|
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0
|
||||||
github.com/Microsoft/go-winio v0.6.1
|
github.com/Microsoft/go-winio v0.6.1
|
||||||
github.com/Microsoft/hcsshim v0.12.0-rc.0
|
github.com/Microsoft/hcsshim v0.12.0-rc.0
|
||||||
|
github.com/Microsoft/hcsshim/test v0.0.0-20210227013316-43a75bb4edd3
|
||||||
github.com/container-orchestrated-devices/container-device-interface v0.6.1
|
github.com/container-orchestrated-devices/container-device-interface v0.6.1
|
||||||
github.com/containerd/btrfs/v2 v2.0.0
|
github.com/containerd/btrfs/v2 v2.0.0
|
||||||
github.com/containerd/cgroups/v3 v3.0.2
|
github.com/containerd/cgroups/v3 v3.0.2
|
||||||
|
1
go.sum
1
go.sum
@ -95,6 +95,7 @@ github.com/Microsoft/hcsshim v0.9.4/go.mod h1:7pLA8lDk46WKDWlVsENo92gC0XFa8rbKfy
|
|||||||
github.com/Microsoft/hcsshim v0.12.0-rc.0 h1:wX/F5huJxH9APBkhKSEAqaiZsuBvbbDnyBROZAqsSaY=
|
github.com/Microsoft/hcsshim v0.12.0-rc.0 h1:wX/F5huJxH9APBkhKSEAqaiZsuBvbbDnyBROZAqsSaY=
|
||||||
github.com/Microsoft/hcsshim v0.12.0-rc.0/go.mod h1:rvOnw3YlfoNnEp45wReUngvsXbwRW+AFQ10GVjG1kMU=
|
github.com/Microsoft/hcsshim v0.12.0-rc.0/go.mod h1:rvOnw3YlfoNnEp45wReUngvsXbwRW+AFQ10GVjG1kMU=
|
||||||
github.com/Microsoft/hcsshim/test v0.0.0-20201218223536-d3e5debf77da/go.mod h1:5hlzMzRKMLyo42nCZ9oml8AdTlq/0cvIaBv6tK1RehU=
|
github.com/Microsoft/hcsshim/test v0.0.0-20201218223536-d3e5debf77da/go.mod h1:5hlzMzRKMLyo42nCZ9oml8AdTlq/0cvIaBv6tK1RehU=
|
||||||
|
github.com/Microsoft/hcsshim/test v0.0.0-20210227013316-43a75bb4edd3 h1:4FA+QBaydEHlwxg0lMN3rhwoDaQy6LKhVWR4qvq4BuA=
|
||||||
github.com/Microsoft/hcsshim/test v0.0.0-20210227013316-43a75bb4edd3/go.mod h1:mw7qgWloBUl75W/gVH3cQszUg1+gUITj7D6NY7ywVnY=
|
github.com/Microsoft/hcsshim/test v0.0.0-20210227013316-43a75bb4edd3/go.mod h1:mw7qgWloBUl75W/gVH3cQszUg1+gUITj7D6NY7ywVnY=
|
||||||
github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ=
|
github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ=
|
||||||
github.com/NYTimes/gziphandler v1.1.1/go.mod h1:n/CVRwUEOgIxrgPvAQhUUr9oeUtvrhMomdKFjzJNB0c=
|
github.com/NYTimes/gziphandler v1.1.1/go.mod h1:n/CVRwUEOgIxrgPvAQhUUr9oeUtvrhMomdKFjzJNB0c=
|
||||||
|
@ -1,79 +0,0 @@
|
|||||||
module github.com/containerd/containerd/integration/client
|
|
||||||
|
|
||||||
go 1.19
|
|
||||||
|
|
||||||
require (
|
|
||||||
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24
|
|
||||||
github.com/Microsoft/hcsshim v0.12.0-rc.0
|
|
||||||
github.com/Microsoft/hcsshim/test v0.0.0-20210408205431-da33ecd607e1
|
|
||||||
github.com/containerd/cgroups/v3 v3.0.2
|
|
||||||
github.com/containerd/containerd v1.7.0 // see replace; the actual version of containerd is replaced with the code at the root of this repository
|
|
||||||
github.com/containerd/continuity v0.4.2
|
|
||||||
github.com/containerd/go-runc v1.1.0
|
|
||||||
github.com/containerd/log v0.1.0
|
|
||||||
github.com/containerd/ttrpc v1.2.2
|
|
||||||
github.com/containerd/typeurl/v2 v2.1.1
|
|
||||||
github.com/opencontainers/go-digest v1.0.0
|
|
||||||
github.com/opencontainers/image-spec v1.1.0-rc5
|
|
||||||
github.com/opencontainers/runtime-spec v1.1.1-0.20230823135140-4fec88fd00a4
|
|
||||||
github.com/stretchr/testify v1.8.4
|
|
||||||
go.opentelemetry.io/otel v1.14.0
|
|
||||||
go.opentelemetry.io/otel/sdk v1.14.0
|
|
||||||
golang.org/x/sys v0.13.0
|
|
||||||
)
|
|
||||||
|
|
||||||
require (
|
|
||||||
dario.cat/mergo v1.0.0 // indirect
|
|
||||||
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0 // indirect
|
|
||||||
github.com/Microsoft/go-winio v0.6.1 // indirect
|
|
||||||
github.com/cilium/ebpf v0.9.1 // indirect
|
|
||||||
github.com/container-orchestrated-devices/container-device-interface v0.6.1 // indirect
|
|
||||||
github.com/containerd/console v1.0.3 // indirect
|
|
||||||
github.com/containerd/fifo v1.1.0 // indirect
|
|
||||||
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
|
|
||||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
||||||
github.com/distribution/reference v0.5.0 // indirect
|
|
||||||
github.com/docker/go-units v0.5.0 // indirect
|
|
||||||
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
||||||
github.com/go-logr/logr v1.2.4 // indirect
|
|
||||||
github.com/go-logr/stdr v1.2.2 // indirect
|
|
||||||
github.com/godbus/dbus/v5 v5.1.0 // indirect
|
|
||||||
github.com/gogo/protobuf v1.3.2 // indirect
|
|
||||||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
||||||
github.com/golang/protobuf v1.5.3 // indirect
|
|
||||||
github.com/google/go-cmp v0.5.9 // indirect
|
|
||||||
github.com/google/uuid v1.3.1 // indirect
|
|
||||||
github.com/klauspost/compress v1.17.2 // indirect
|
|
||||||
github.com/moby/locker v1.0.1 // indirect
|
|
||||||
github.com/moby/sys/mountinfo v0.6.2 // indirect
|
|
||||||
github.com/moby/sys/sequential v0.5.0 // indirect
|
|
||||||
github.com/moby/sys/signal v0.7.0 // indirect
|
|
||||||
github.com/moby/sys/user v0.1.0 // indirect
|
|
||||||
github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 // indirect
|
|
||||||
github.com/opencontainers/selinux v1.11.0 // indirect
|
|
||||||
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
|
|
||||||
github.com/pkg/errors v0.9.1 // indirect
|
|
||||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
||||||
github.com/sirupsen/logrus v1.9.3 // indirect
|
|
||||||
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
|
|
||||||
go.opencensus.io v0.24.0 // indirect
|
|
||||||
go.opentelemetry.io/otel/trace v1.14.0 // indirect
|
|
||||||
golang.org/x/mod v0.12.0 // indirect
|
|
||||||
golang.org/x/net v0.17.0 // indirect
|
|
||||||
golang.org/x/sync v0.3.0 // indirect
|
|
||||||
golang.org/x/text v0.13.0 // indirect
|
|
||||||
golang.org/x/tools v0.11.0 // indirect
|
|
||||||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230726155614-23370e0ffb3e // indirect
|
|
||||||
google.golang.org/grpc v1.58.3 // indirect
|
|
||||||
google.golang.org/protobuf v1.31.0 // indirect
|
|
||||||
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
||||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
||||||
sigs.k8s.io/yaml v1.3.0 // indirect
|
|
||||||
)
|
|
||||||
|
|
||||||
// use the containerd module from this repository instead of downloading
|
|
||||||
//
|
|
||||||
// IMPORTANT: this replace rule ONLY replaces containerd itself; dependencies
|
|
||||||
// in the "require" section above are still taken into account for version
|
|
||||||
// resolution if newer.
|
|
||||||
replace github.com/containerd/containerd => ../../
|
|
File diff suppressed because it is too large
Load Diff
21
vendor/github.com/Microsoft/hcsshim/test/LICENSE
generated
vendored
Normal file
21
vendor/github.com/Microsoft/hcsshim/test/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2015 Microsoft
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
4
vendor/github.com/Microsoft/hcsshim/test/functional/manifest/manifest.go
generated
vendored
Normal file
4
vendor/github.com/Microsoft/hcsshim/test/functional/manifest/manifest.go
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
package manifest
|
||||||
|
|
||||||
|
// This is so that tests can include the .syso to manifest them to pick up the right Windows build
|
||||||
|
// TODO: Auto-generation of the .syso through rsrc or similar.
|
BIN
vendor/github.com/Microsoft/hcsshim/test/functional/manifest/rsrc_amd64.syso
generated
vendored
Normal file
BIN
vendor/github.com/Microsoft/hcsshim/test/functional/manifest/rsrc_amd64.syso
generated
vendored
Normal file
Binary file not shown.
3
vendor/modules.txt
vendored
3
vendor/modules.txt
vendored
@ -60,6 +60,9 @@ github.com/Microsoft/hcsshim/internal/winapi
|
|||||||
github.com/Microsoft/hcsshim/osversion
|
github.com/Microsoft/hcsshim/osversion
|
||||||
github.com/Microsoft/hcsshim/pkg/go-runhcs
|
github.com/Microsoft/hcsshim/pkg/go-runhcs
|
||||||
github.com/Microsoft/hcsshim/pkg/ociwclayer
|
github.com/Microsoft/hcsshim/pkg/ociwclayer
|
||||||
|
# github.com/Microsoft/hcsshim/test v0.0.0-20210227013316-43a75bb4edd3
|
||||||
|
## explicit; go 1.13
|
||||||
|
github.com/Microsoft/hcsshim/test/functional/manifest
|
||||||
# github.com/beorn7/perks v1.0.1
|
# github.com/beorn7/perks v1.0.1
|
||||||
## explicit; go 1.11
|
## explicit; go 1.11
|
||||||
github.com/beorn7/perks/quantile
|
github.com/beorn7/perks/quantile
|
||||||
|
Loading…
Reference in New Issue
Block a user