mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
e5d28115ee
- all changes here are attributed to difference in behaviour between, namely: - resolution of secondary test dependencies - prunning of non-Go files Signed-off-by: Ilya Dmitrichenko <errordeveloper@gmail.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
19 lines
591 B
YAML
19 lines
591 B
YAML
language: go
|
|
go:
|
|
- "1.10.x"
|
|
- "1.11.x"
|
|
- "1.12.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
|
|
install:
|
|
- go get github.com/vishvananda/netns
|
|
go_import_path: github.com/vishvananda/netlink
|