4493b6f176
The ocid project was renamed to CRI-O, months ago, it is time that we moved all of the code to the new name. We want to elminate the name ocid from use. Move fully to crio. Also cric is being renamed to crioctl for the time being. Signed-off-by: Dan Walsh <dwalsh@redhat.com>
32 lines
484 B
YAML
32 lines
484 B
YAML
language: go
|
|
go:
|
|
- 1.6.x
|
|
- 1.7.x
|
|
- 1.8.x
|
|
- tip
|
|
|
|
sudo: required
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get -qq install btrfs-tools libdevmapper-dev libgpgme11-dev libapparmor-dev libseccomp-dev
|
|
|
|
install:
|
|
- make install.tools
|
|
|
|
before_script:
|
|
- export PATH=$HOME/gopath/bin:$PATH
|
|
|
|
script:
|
|
- make .gitvalidation
|
|
- make gofmt
|
|
- make lint
|
|
- make integration
|
|
- make docs
|
|
- make
|
|
|
|
notifications:
|
|
irc: "chat.freenode.net#crio"
|