podman/.travis.yml
baude ed5d686076 Remove gitvalidation from travis
gitvalidation in travis has been problematic.  It is already
being done in Fedora and Centos so we have a reliable test
occuring there.

Signed-off-by: baude <bbaude@redhat.com>

Closes: #91
Approved by: rhatdan
2017-11-30 17:42:21 +00:00

59 lines
1.3 KiB
YAML

language: go
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
- sudo apt-get -qq install autoconf automake bison e2fslibs-dev libfuse-dev libtool liblzma-dev gettext
install:
- make install.tools
- OSTREE_VERSION=v2017.9
- git clone https://github.com/ostreedev/ostree ${TRAVIS_BUILD_DIR}/ostree
- pushd ${TRAVIS_BUILD_DIR}/ostree
- git checkout $OSTREE_VERSION
- ./autogen.sh --prefix=/usr/local
- make all
- sudo make install
- popd
before_script:
- export PATH=$HOME/gopath/bin:$PATH
- export LD_LIBRARY_PATH=/usr/local/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
env:
global:
- TRAVIS=1
jobs:
include:
- stage: Build and Verify
script:
- make gofmt
- make lint
- make testunit
- make docs
- make
go: 1.8.x
- stage: Build and Verify
script:
- make gofmt
- make lint
- make testunit
- make docs
- make
go: 1.9.x
- stage: Integration Test
script:
- make all
- make integration
go: 1.8.x
# Turn off notifications until we have our own channel (After rename)
# notifications:
# irc: "chat.freenode.net#cri-o"