Skip to content

Commit

Permalink
Merge pull request #40 from futurecore/enable-fast-fail
Browse files Browse the repository at this point in the history
Enable fast fail
  • Loading branch information
snim2 committed Jul 31, 2016
2 parents c17570e + 01ecf70 commit 0a91990
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
language: python
python: '2.7'
cache: pip
env:
matrix:
- TRANSLATE=true
matrix:
fast_finish: true
install:
- pip install --disable-pip-version-check --upgrade pip
- pip install -r requirements.txt
Expand All @@ -21,12 +20,12 @@ script:
--cov=revelation revelation/test/
- python -m doctest scripts/diff_trace.py
- python -m doctest scripts/get_instructions_used.py
- test "$TRANSLATE" == "true" && PYTHONPATH=${HOME}/pydgin/:${HOME}/pypy:. ${HOME}/pypy/rpython/bin/rpython
--no-pdb --opt=jit revelation/sim.py || true
- test "$TRANSLATE" == "true" && PYTHONPATH=${HOME}/pydgin/:${HOME}/pypy:. ${HOME}/pypy/rpython/bin/rpython
--no-pdb --opt=jit revelation/sim.py --debug || true
- test "$TRANSLATE" == "true" && PYTHONPATH=${HOME}/pydgin/:${HOME}/pypy:. ${HOME}/pypy/rpython/bin/rpython
--no-pdb -O2 revelation/sim.py || true
- PYTHONPATH=${HOME}/pydgin/:. ${HOME}/pypy/rpython/bin/rpython
--no-pdb --opt=jit revelation/sim.py
- PYTHONPATH=${HOME}/pydgin/:. ${HOME}/pypy/rpython/bin/rpython
--no-pdb --opt=jit revelation/sim.py --debug
- PYTHONPATH=${HOME}/pydgin/:. ${HOME}/pypy/rpython/bin/rpython
--no-pdb -O2 revelation/sim.py
- mkdir bin
- mv pydgin-revelation-* bin/
- echo "Translated Revelation binaries:" bin/*
Expand Down

0 comments on commit 0a91990

Please sign in to comment.