mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-26 18:27:53 +00:00
Bumps [github.com/containernetworking/plugins](https://github.com/containernetworking/plugins) from 0.8.7 to 0.9.0. - [Release notes](https://github.com/containernetworking/plugins/releases) - [Commits](https://github.com/containernetworking/plugins/compare/v0.8.7...v0.9.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
20 lines
600 B
YAML
20 lines
600 B
YAML
language: go
|
|
go:
|
|
- "1.12.x"
|
|
- "1.13.x"
|
|
- "1.14.x"
|
|
before_script:
|
|
# make sure we keep path in tact when we sudo
|
|
- sudo sed -i -e 's/^Defaults\tsecure_path.*$//' /etc/sudoers
|
|
# modprobe ip_gre or else the first gre device can't be deleted
|
|
- sudo modprobe ip_gre
|
|
# modprobe nf_conntrack for the conntrack testing
|
|
- sudo modprobe nf_conntrack
|
|
- sudo modprobe nf_conntrack_netlink
|
|
- sudo modprobe nf_conntrack_ipv4
|
|
- sudo modprobe nf_conntrack_ipv6
|
|
- sudo modprobe sch_hfsc
|
|
- sudo modprobe sch_sfq
|
|
install:
|
|
- go get -v -t ./...
|
|
go_import_path: github.com/vishvananda/netlink
|