mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-21 22:41:26 +00:00
Add travis ci settings file
This commit is contained in:
parent
27f2504cda
commit
17de589e7d
15
.travis.yml
Normal file
15
.travis.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
language: c
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
compiler:
|
||||
- clang
|
||||
- gcc
|
||||
|
||||
before_install:
|
||||
- if [ `uname` == "Linux" ]; then sudo apt-get update -qq && sudo apt-get install -qq check zlib1g-dev; fi
|
||||
- if [ `uname` == "Darwin" ]; then brew update && brew install check; fi
|
||||
|
||||
script: make && make test
|
||||
|
||||
install: true
|
Loading…
Reference in a new issue