ffb1bc46f2d9605f7c3fba478f918fcc288bbdd6
   1language: c
   2
   3cache:
   4  directories:
   5    - $HOME/travis-cache
   6
   7os:
   8  - linux
   9  - osx
  10
  11osx_image: xcode10.1
  12
  13compiler:
  14  - clang
  15  - gcc
  16
  17matrix:
  18  include:
  19    - env: jobname=GIT_TEST_GETTEXT_POISON
  20      os: linux
  21      compiler:
  22      addons:
  23      before_install:
  24    - env: jobname=Linux32
  25      os: linux
  26      compiler:
  27      addons:
  28      services:
  29        - docker
  30      before_install:
  31      script: ci/run-linux32-docker.sh
  32    - env: jobname=StaticAnalysis
  33      os: linux
  34      compiler:
  35      script: ci/run-static-analysis.sh
  36      after_failure:
  37    - env: jobname=Documentation
  38      os: linux
  39      compiler:
  40      script: ci/test-documentation.sh
  41      after_failure:
  42
  43before_install: ci/install-dependencies.sh
  44script: ci/run-build-and-tests.sh
  45after_failure: ci/print-test-failures.sh
  46
  47notifications:
  48  email: false