rdesktop/.travis.yml

30 lines
869 B
YAML
Raw Normal View History

2017-10-04 21:40:21 +02:00
matrix:
include:
- os: linux
dist: trusty
sudo: required
compiler:
- gcc
- clang
2017-10-04 21:40:21 +02:00
- os: osx
osx_image: xcode7.3
compiler: clang
2016-09-20 09:06:36 +02:00
language: c
2017-09-21 19:31:19 +02:00
notifications:
slack: rdesktop:RZWCtYeVc9qVzsBvTzQtmyLt
before_install:
2017-10-04 21:40:21 +02:00
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install openssl ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libpcsclite-dev libxcursor-dev libao-dev libasound2-dev ; fi
2017-10-04 21:40:21 +02:00
script:
- ./bootstrap
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then PKG_CONFIG_PATH=/opt/X11/lib/pkgconfig ./configure --with-openssl=/usr/local/opt/openssl ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./configure ; fi
- make