2016-12-19 22:24:56 +00:00
|
|
|
dist: trusty
|
|
|
|
sudo: required
|
|
|
|
|
|
|
|
language: go
|
|
|
|
|
|
|
|
go:
|
2017-02-20 17:59:53 +00:00
|
|
|
- 1.8.x
|
2016-12-19 22:24:56 +00:00
|
|
|
- tip
|
|
|
|
|
|
|
|
go_import_path: github.com/docker/containerd
|
|
|
|
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- btrfs-tools
|
|
|
|
|
|
|
|
install:
|
|
|
|
- wget https://github.com/google/protobuf/releases/download/v3.1.0/protoc-3.1.0-linux-x86_64.zip -O /tmp/protoc-3.1.0-linux-x86_64.zip
|
|
|
|
- unzip -o -d /tmp/protobuf /tmp/protoc-3.1.0-linux-x86_64.zip
|
|
|
|
- export PATH=$PATH:/tmp/protobuf/bin/
|
|
|
|
|
|
|
|
script:
|
2017-01-25 00:10:48 +00:00
|
|
|
- make binaries
|
|
|
|
- make coverage
|
|
|
|
- sudo PATH=$PATH GOPATH=$GOPATH make root-coverage
|
2017-01-11 22:51:06 +00:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|