Commit 35767971 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Turn on gdb-watcher globally for travis-ci builds

We had lost it since I guess `VAR=a cmd1 && cmd2` only applies
the VAR variable to the first command and not the second.
parent a164e4c0
......@@ -5,8 +5,11 @@ compiler:
- gcc
env:
matrix:
- TRAVIS_BUILD_TYPE=Debug
- TRAVIS_BUILD_TYPE=Release
global:
- PYSTON_RUN_ARGS=G
matrix:
exclude:
......@@ -63,7 +66,7 @@ before_script:
script:
- ccache -z
- PYSTON_RUN_ARGS=G ninja -j4 pyston check-deps && ctest --output-on-failure
- ninja -j4 pyston check-deps && ctest --output-on-failure
- ccache -s
- if [ -n "$(git status --porcelain --untracked=no)" ]; then echo "test suite left the source directory dirty"; git status; false; fi
......
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