diff options
author | Werner Koch <[email protected]> | 2018-03-22 19:28:38 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2018-03-22 19:28:38 +0000 |
commit | d4faf67b6367a972af18e8b7a02935bc84f3f678 (patch) | |
tree | 19f3d6c84511509e07a56f7f23501998d62d244e | |
parent | build: Update travis configuration. (diff) | |
download | libgpg-error-d4faf67b6367a972af18e8b7a02935bc84f3f678.tar.gz libgpg-error-d4faf67b6367a972af18e8b7a02935bc84f3f678.zip |
build: More travis.yml tweaking
--
-rw-r--r-- | .travis.yml | 30 |
1 files changed, 22 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index b009106..6ae94b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,22 @@ -{ - "language": "c", - "compiler": "gcc", - "script": "./autogen.sh --git-build", - "os": "linux", - "group": "stable", - "dist": "trusty" -} +language: c + +os: + - linux + dist: trusty + sudo: required + - osx + +compiler: + - gcc + - clang + +before_install: +- echo "Building for $TRAVIS_OS_NAME\n"; + +#Linux +if [ $TRAVIS_OS_NAME == linux ]; then + sudo apt-get update -qq; + sudo apt-get install gettext; +fi + +script: ./autogen.sh --git-build |