Commit 0fae0f8b authored by Stefan Behnel's avatar Stefan Behnel

split travis build jobs into C/C++

parent ac87fcc9
......@@ -9,6 +9,10 @@ python:
# - pypy
env:
- BACKEND=c
- BACKEND=cpp
branches:
only:
- master
......@@ -21,8 +25,9 @@ before_install:
install: CFLAGS="-O2 -ggdb" pip install .
script:
- PYTHON="python$( python -c 'import sys; print("%d.%d" % sys.version_info[:2])' )-dbg"
- CFLAGS="-O0 -ggdb" $( $PYTHON -V >&2 && echo $PYTHON || echo python ) runtests.py -vv
- PYTHON_DBG="python$( python -c 'import sys; print("%d.%d" % sys.version_info[:2])' )-dbg"
- if $PYTHON_DBG -V >&2; then CFLAGS="-O0 -ggdb" $PYTHON_DBG runtests.py -vv Debugger --backends=$BACKEND; fi
- CFLAGS="-O0 -ggdb" python runtests.py -vv -x Debugger --backends=$BACKEND
matrix:
allow_failures:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment