8cadff2b79
* CNI: bump to 1.0.1 This commit bumps the declared version of CNI in the Kilo manifests to 1.0.1. This is possible with no changes to the configuration lists because our simple configuration is not affected by any of the deprecations, and there was effectively no change between 0.4.0 and 1.0.0, other than the declaration of a stable API. Similarly, this commit also bumps the version of the CNI library and the plugins package. Bumping to CNI 1.0.0 will help ensure that Kilo stays compatible with container runtimes in the future. Signed-off-by: Lucas Servén Marín <lserven@gmail.com> * vendor: revendor Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
21 lines
600 B
YAML
21 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
|