diff options
author | Stefan Eissing <icing@apache.org> | 2023-06-01 14:50:30 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2023-06-01 14:50:30 +0200 |
commit | 69003456a584b6689b28645e3b6f3006c500830e (patch) | |
tree | 4bcc63ddcd4ce03a9771fdfc8a7a3f07ecd9861e /test/travis_before_linux.sh | |
parent | *) core: add `final_resp_passed` flag to request_rec to allow (diff) | |
download | apache2-69003456a584b6689b28645e3b6f3006c500830e.tar.xz apache2-69003456a584b6689b28645e3b6f3006c500830e.zip |
CI: force reset of cached apr for TEST_H2, it seems to be broken
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1910163 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/travis_before_linux.sh')
-rwxr-xr-x | test/travis_before_linux.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/travis_before_linux.sh b/test/travis_before_linux.sh index bc4d65942b..f5529299cd 100755 --- a/test/travis_before_linux.sh +++ b/test/travis_before_linux.sh @@ -71,6 +71,10 @@ function install_apx() { # Blow away the cached install root if the cached install is stale # or doesn't match the expected configuration. grep -q "${version} ${revision} ${config} CC=$CC" ${HOME}/root/.key-${name} || rm -rf ${prefix} + # TEST_H2 APR cache seems to be broken, reset + if test -v TEST_H2; then + rm -rf ${prefix} + fi if test -d ${prefix}; then return 0 |