summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: eb000b25559039bed5478b0203ed54b4852008fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: c

matrix:
  include:
    - os: linux
      arch: amd64
      compiler: gcc
    - os: linux
      arch: ppc64le
      compiler: gcc
    - os: osx
      osx_image: xcode11

script:
  - cd ${TRAVIS_BUILD_DIR}
  - if [ "$TRAVIS_ARCH" = ppc64le ]; then
       FAKETIME_COMPILE_CFLAGS="-DFORCE_MONOTONIC_FIX -DFORCE_PTHREAD_NONVER" make;
    else
       FAKETIME_COMPILE_CFLAGS="-DFORCE_MONOTONIC_FIX" make;
    fi
  - make test