mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-04-20 22:37:24 -04:00
[CI] Force php -l failure (#2363)
* [CI] Force php -l failure By redirecting stderr to a file and checking if the filesize is greater than 0 bytes, we can also force failure for warnings. See discussion in <https://github.com/FreshRSS/FreshRSS/pull/2362#issuecomment-480623161>. * exclude JSON lib
This commit is contained in:
committed by
Alexandre Alapetite
parent
d26a49bc66
commit
1bf8ef4e32
@@ -14,7 +14,8 @@ install:
|
||||
|
||||
script:
|
||||
- phpenv rehash
|
||||
- git ls-files -z "*.php" | xargs -0 -n1 -P4 php -l
|
||||
- find . -not -path "./lib/JSON.php" -name \*.php -print0 | xargs -0 -n1 -P4 php -l 1>/dev/null 2>php-l-results
|
||||
- if [ -s php-l-results ]; then cat php-l-results; exit 1; fi
|
||||
- |
|
||||
if [[ $VALIDATE_STANDARD == yes ]]; then
|
||||
COMPOSER_BIN=$(composer global config --absolute bin-dir)
|
||||
|
||||
Reference in New Issue
Block a user