Skip to content

Commit

Permalink
Better travis config comments [skip ci] (yiisoft#15996)
Browse files Browse the repository at this point in the history
  • Loading branch information
rugabarbo authored and samdark committed Mar 27, 2018
1 parent 839112a commit 4b3edca
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,14 @@ install:
fi
before_script:
# Disable the HHVM JIT and sessions GC for faster Unit Testing
#
# Disable:
# 1) the HHVM JIT for faster testing;
# 2) the session GC for testing stability.
#
# The second allows to avoid accidental unpredictable failings with message:
# `ps_files_cleanup_dir: opendir(/var/lib/hhvm/sessions) failed: Permission denied (13)`
#
- if [[ $TRAVIS_PHP_VERSION = hhv* ]]; then
echo 'hhvm.jit = 0' >> /etc/hhvm/php.ini;
echo 'session.gc_probability = 0' >> /etc/hhvm/php.ini;
Expand Down

0 comments on commit 4b3edca

Please sign in to comment.