summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 186ea643074fc49877d9a450cd09f74f7cbdf84d (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
dist: trusty
sudo: false
language: c

matrix:
   include:
       - os: linux
         arch: amd64
         compiler: clang
       - os: linux
         arch: ppc64le
         compiler: clang
       - os: osx
         arch: amd64
         compiler: clang
       - os: linux
         arch: amd64
         compiler: gcc 
       - os: linux
         arch: ppc64le
         compiler: gcc 
       - os: osx
         arch: amd64
         compiler: gcc 
script: make && make check
jobs:
  include:
    - stage: Acceptance Test
      language: ruby
      rvm: 2.5.1
      script: make acceptance
      addons:
        apt:
          packages:
          - tmux