mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-08 09:23:17 +00:00
16 lines
317 B
YAML
16 lines
317 B
YAML
|
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
|