summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: bb79560df739cff3e99c24b488d5382c3d346b57 (plain) (blame)
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
language: c

compiler:
  - clang
  - gcc

os:
  - freebsd
  - linux
  - osx

arch:
  - amd64
  - s390x

before_script:
  if [[ ${TRAVIS_CPU_ARCH} == 's390x' ]]; then
      sudo apt-get update && sudo apt-get install -y libncursesw5-dev ;
  fi

script:
  - ./autogen.sh
  # clang might warn about C11 generic selections in isnan()
  - CFLAGS=-Wno-c11-extensions ./configure --enable-werror
  - make -k
  - CFLAGS=-Wno-c11-extensions make distcheck DISTCHECK_CONFIGURE_FLAGS=--enable-werror

© 2014-2024 Faster IT GmbH | imprint | privacy policy