From 86240ff6be5d1c7e6d8778b7595555419ca149f6 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 1 Dec 2017 07:30:12 +0100 Subject: v1.5.3 --- composer.spec | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/composer.spec b/composer.spec index c4c921b..b41a5d9 100644 --- a/composer.spec +++ b/composer.spec @@ -6,7 +6,7 @@ # # Please, preserve the changelog entries # -%global gh_commit c639623fa2178b404ed4bab80f0d1263853fa4ae +%global gh_commit de0c4afd4aeb08171b54b64e63aa61a04b4510ee %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_branch 1.0-dev %global gh_owner composer @@ -16,7 +16,7 @@ #global prever RC Name: composer -Version: 1.5.2 +Version: 1.5.3 Release: 1%{?dist} Summary: Dependency Manager for PHP @@ -231,10 +231,13 @@ rm -rf res : Run test suite export BUILDROOT=%{buildroot} +# testIntegration may hang on local build ret=0 for cmd in php php56 php70 php71 php72; do if which $cmd; then - $cmd %{_bindir}/phpunit --include-path %{buildroot}%{_datadir}/php --verbose || ret=1 + $cmd -d memory_limit=1G %{_bindir}/phpunit \ + --filter '^((?!(testIntegration)).)*$' \ + --include-path %{buildroot}%{_datadir}/php || ret=1 fi done exit $ret @@ -255,6 +258,9 @@ exit $ret %changelog +* Fri Dec 1 2017 Remi Collet - 1.5.3-1 +- Update to 1.5.3 + * Mon Sep 11 2017 Remi Collet - 1.5.2-1 - Update to 1.5.2 -- cgit