diff options
author | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2016-08-17 15:17:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-17 15:17:07 +0200 |
commit | 782390a80effe3dbf7071de137e026067b116c93 (patch) | |
tree | 3fba287c252e664bf6383a906c9eee386e541b4f /.travis.yml | |
parent | 9a5c5c330efba45aff2290bc196ec00c3f2de3b9 (diff) | |
parent | 0cecfa25367742907d4833d0b9d0e23d8046913d (diff) | |
download | wallabag-782390a80effe3dbf7071de137e026067b116c93.tar.gz wallabag-782390a80effe3dbf7071de137e026067b116c93.tar.zst wallabag-782390a80effe3dbf7071de137e026067b116c93.zip |
Merge pull request #2095 from wallabag/fix-2auth-form
Fix form user display when 2FA is disabled
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 1a33198a..a387fc13 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -20,6 +20,7 @@ php: | |||
20 | - 5.5 | 20 | - 5.5 |
21 | - 5.6 | 21 | - 5.6 |
22 | - 7.0 | 22 | - 7.0 |
23 | - 7.1 | ||
23 | - nightly | 24 | - nightly |
24 | - hhvm | 25 | - hhvm |
25 | 26 | ||
@@ -38,6 +39,7 @@ matrix: | |||
38 | env: DB=pgsql # driver for PostgreSQL currently unsupported by HHVM, requires 3rd party dependency | 39 | env: DB=pgsql # driver for PostgreSQL currently unsupported by HHVM, requires 3rd party dependency |
39 | allow_failures: | 40 | allow_failures: |
40 | - php: hhvm | 41 | - php: hhvm |
42 | - php: nightly | ||
41 | 43 | ||
42 | # exclude v1 branches | 44 | # exclude v1 branches |
43 | branches: | 45 | branches: |
@@ -46,7 +48,8 @@ branches: | |||
46 | 48 | ||
47 | before_script: | 49 | before_script: |
48 | - if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi; | 50 | - if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi; |
49 | - if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi; | 51 | # xdebug isn't enable for PHP 7.1 |
52 | - if [[ $TRAVIS_PHP_VERSION != '7.1' && $TRAVIS_PHP_VERSION != 'hhvm' ]]; then phpenv config-rm xdebug.ini; fi | ||
50 | - composer self-update --no-progress | 53 | - composer self-update --no-progress |
51 | - if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag_test;' -U postgres; fi; | 54 | - if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag_test;' -U postgres; fi; |
52 | 55 | ||