mblaze/.travis.yml

19 lines
318 B
YAML
Raw Normal View History

2017-03-29 18:31:25 +00:00
language: c
os:
- linux
- osx
compiler:
- clang
- gcc
script:
- case "$(uname)" in
Linux) make CFLAGS="-g -O2 -Wall -Wno-switch -Wextra -D_FORTIFY_SOURCE=2" && make check || exit 1 ;;
Darwin) make LDLIBS=-liconv && make check || exit 1 ;;
esac
notifications:
email: false