Codebase list lastpass-cli / e4ce8fd3-a377-4cac-bf6e-1d5d5ce310ed/upstream/1.3.4 .travis.yml
e4ce8fd3-a377-4cac-bf6e-1d5d5ce310ed/upstream/1.3.4

Tree @e4ce8fd3-a377-4cac-bf6e-1d5d5ce310ed/upstream/1.3.4 (Download .tar.gz)

.travis.yml @e4ce8fd3-a377-4cac-bf6e-1d5d5ce310ed/upstream/1.3.4raw · history · blame

language: cpp
sudo: required
dist: trusty
osx_image: xcode7

compiler:
 - gcc
 - clang

os:
- linux
- osx

before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install libxml2 || true ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install cmake || true ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libxml2-dev; fi

script: make && make test