aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 2ede77a93df6937c302796a91edb5b1a95e5ea40 (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
language: go

sudo: required
dist: trusty

services:
  - docker

before_install:
  - if [ "${TRAVIS_OS_NAME}" = linux ]; then sudo apt-get -qq update; fi
  - if [ "${TRAVIS_OS_NAME}" = linux ]; then sudo apt-get -qq install btrfs-tools libdevmapper-dev libgpgme11-dev libapparmor-dev; fi
  - if [ "${TRAVIS_OS_NAME}" = linux ]; then sudo apt-get -qq install autoconf automake bison e2fslibs-dev libfuse-dev libtool liblzma-dev gettext; fi
  - if [ "${TRAVIS_OS_NAME}" = linux ]; then sudo apt-get -qq install python3-setuptools python3-dateutil python3-psutil; fi
  - if [ "${TRAVIS_OS_NAME}" = linux ]; then sudo make install.libseccomp.sudo; fi

install:
  - make install.tools

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
      go: 1.10.x
    - script:
        - make gofmt
        - make lint
      go: 1.10.x
      os: osx
    - script:
        - make testunit
      go: 1.9.x
    - stage: Build and Verify
      script:
        - make testunit
      go: 1.10.x
    - script:
        - make --keep-going local-cross
      go: 1.10.x
    - script:
        - make --keep-going local-cross
      go: 1.10.x
      os: osx
      env: ALLOWED_TO_FAIL=true
    - stage: Integration Test
      script:
        - make integration
      go: 1.9.x
  allow_failures:
    - env: ALLOWED_TO_FAIL=true

notifications:
  irc: "chat.freenode.net#podman"