mirror of
https://github.com/dvorka/hstr.git
synced 2024-12-26 01:15:26 +08:00
Merge pull request #233 from stephengroat/patch-1
Get better coverage from Travis.
This commit is contained in:
commit
476b10fb5d
1 changed files with 24 additions and 6 deletions
30
.travis.yml
30
.travis.yml
|
@ -2,9 +2,31 @@
|
|||
|
||||
language: c
|
||||
|
||||
os: linux
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- autotools-dev
|
||||
- libreadline-dev
|
||||
- libncursesw5-dev
|
||||
|
||||
compiler: gcc
|
||||
compiler:
|
||||
- gcc
|
||||
- clang
|
||||
|
||||
matrix:
|
||||
include:
|
||||
- if: branch = master
|
||||
compiler: gcc
|
||||
os: osx
|
||||
script: brew install --HEAD jq && brew test jq
|
||||
- if: branch = master
|
||||
compiler: clang
|
||||
os: osx
|
||||
script: brew install --HEAD jq && brew test jq
|
||||
|
||||
notifications:
|
||||
email:
|
||||
|
@ -12,10 +34,6 @@ notifications:
|
|||
on_failure: change
|
||||
|
||||
before_install:
|
||||
- sudo apt-get update -qq
|
||||
- sudo apt-get install -qq autotools-dev libreadline-dev libncursesw5-dev
|
||||
- aclocal
|
||||
- automake --force-missing --add-missing
|
||||
- autoconf
|
||||
|
||||
# eof
|
||||
|
|
Loading…
Reference in a new issue