forked from containerd/cri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (31 loc) · 968 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
language: go
go:
- 1.8.x
- tip
sudo: required
services:
- docker
before_install:
# libseccomp in trusty is not new enough, need backports version.
- sudo sh -c "echo 'deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse' > /etc/apt/sources.list.d/backports.list"
- sudo apt-get update
install:
- sudo apt-get install btrfs-tools
- sudo apt-get install libseccomp2/trusty-backports
- sudo apt-get install libseccomp-dev/trusty-backports
- docker run --rm -v /usr/local/bin:/target jpetazzo/nsenter
- make install.tools
- make install.deps
before_script:
- export PATH=$HOME/gopath/bin:$PATH
script:
- make .gitvalidation
- make verify
- make binaries
- make test
- make test-cri
after_script:
# Abuse travis to preserve the log.
# TODO(random-liu): Use prow for integration test.
- cat /tmp/cri-containerd.log
- cat /tmp/containerd.log