Bash-Snippets/.travis.yml

29 lines
1.0 KiB
YAML
Raw Normal View History

language: bash
2017-08-02 06:50:26 +02:00
matrix:
include:
- os: linux
dist: trusty
sudo: required
- os: osx
osx_image: xcode7.2
allow_failures:
- os: osx
2017-08-02 06:50:26 +02:00
before_install:
- sudo ./install.sh all
2017-08-02 06:50:26 +02:00
install:
- if [ $TRAVIS_OS_NAME = linux ]; then sudo add-apt-repository ppa:duggan/bats --yes; fi
2017-08-02 07:48:54 +02:00
- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get update; else brew update; fi
2017-08-02 06:50:26 +02:00
- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get install -qq bats; else brew install bats; fi
- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get install -qq openssl; else brew install openssl; fi
2017-08-02 07:48:54 +02:00
- if [ $TRAVIS_OS_NAME = osx ]; then brew install curl && brew upgrade git; fi
2017-08-02 06:59:34 +02:00
- if [ $TRAVIS_OS_NAME = linux ]; then cpanm Sparrow --sudo --notest -q; fi
- if [ $TRAVIS_OS_NAME = linux ]; then sparrow index update; fi
- if [ $TRAVIS_OS_NAME = linux ]; then sparrow plg install bash-snippets-interactive-test; fi
script:
2017-08-02 06:59:34 +02:00
- if [ $TRAVIS_OS_NAME = linux ]; then sparrow plg run bash-snippets-interactive-test --param dir=$PWD; fi
- bats tests