92175dd78c
Switch github.com/imdario/mergo to dario.cat/mergo v1.0.0, because the module was renamed, and reached v1.0.0 full diff: https://github.com/imdario/mergo/compare/v0.3.13...v1.0.0 vendor: github.com/containerd/containerd v1.7.12 - full diff: https://github.com/containerd/containerd/compare/v1.7.11...v1.7.12 - release notes: https://github.com/containerd/containerd/releases/tag/v1.7.12 Welcome to the v1.7.12 release of containerd! The twelfth patch release for containerd 1.7 contains various fixes and updates. Notable Updates - Fix on dialer function for Windows - Improve `/etc/group` handling when appending groups - Update shim pidfile permissions to 0644 - Update runc binary to v1.1.11 - Allow import and export to reference missing content - Remove runc import - Update Go version to 1.20.13 Deprecation Warnings - Emit deprecation warning for `containerd.io/restart.logpath` label usage Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
12 lines
273 B
YAML
12 lines
273 B
YAML
language: go
|
|
arch:
|
|
- amd64
|
|
- ppc64le
|
|
install:
|
|
- go get -t
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get github.com/mattn/goveralls
|
|
script:
|
|
- go test -race -v ./...
|
|
after_script:
|
|
- $HOME/gopath/bin/goveralls -service=travis-ci -repotoken $COVERALLS_TOKEN
|