You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2020/07/10 11:25:15 UTC

svn commit: r1879757 - /httpd/httpd/trunk/.travis.yml

Author: jorton
Date: Fri Jul 10 11:25:14 2020
New Revision: 1879757

URL: http://svn.apache.org/viewvc?rev=1879757&view=rev
Log:
Try removing the cached ~/perl5 to reset the broken worker
MPM test job.

Modified:
    httpd/httpd/trunk/.travis.yml

Modified: httpd/httpd/trunk/.travis.yml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/.travis.yml?rev=1879757&r1=1879756&r2=1879757&view=diff
==============================================================================
--- httpd/httpd/trunk/.travis.yml (original)
+++ httpd/httpd/trunk/.travis.yml Fri Jul 10 11:25:14 2020
@@ -300,6 +300,7 @@ jobs:
 # otherwise.
 before_install:
   - if [ "$TRAVIS_OS_NAME" = "linux" -a ! -v SKIP_TESTING ]; then
+        if [ -v CLEAR_CACHE ]; then rm -rf ~/perl5; fi;
         cpanm --local-lib=~/perl5 local::lib && eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib);
         CC=gcc cpanm --notest Net::SSL LWP::Protocol::https ExtUtils::Embed Test::More AnyEvent DateTime HTTP::DAV Protocol::HTTP2::Client FCGI Apache::Test;
     fi