rdesktop/.travis.yml

32 lines
934 B
YAML
Raw Permalink Normal View History

2017-10-04 21:40:21 +02:00
matrix:
include:
- os: linux
2019-01-18 10:25:32 +01:00
dist: xenial
2017-10-04 21:40:21 +02:00
sudo: required
compiler: gcc
- os: linux
2019-01-23 12:16:12 +01:00
dist: xenial
sudo: required
compiler: 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
2018-09-03 22:39:09 +02:00
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install libtasn1 nettle gnutls; fi
2017-10-04 21:40:21 +02:00
- 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 libtasn1-dev nettle-dev libgnutls-dev ; fi
2017-10-04 21:40:21 +02:00
script:
- ./bootstrap
2018-09-03 22:39:09 +02:00
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then PKG_CONFIG_PATH=/opt/X11/lib/pkgconfig ./configure ; fi
2017-10-04 21:40:21 +02:00
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./configure ; fi
- make