You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2022/05/11 08:20:43 UTC

svn commit: r1900805 - /httpd/httpd/branches/2.4.x/test/travis_run_linux.sh

Author: icing
Date: Wed May 11 08:20:43 2022
New Revision: 1900805

URL: http://svn.apache.org/viewvc?rev=1900805&view=rev
Log:
  *) test: log rustc and cbindget versions used to build rustls-ffi
     to speed up analysis of any problems in the future.


Modified:
    httpd/httpd/branches/2.4.x/test/travis_run_linux.sh

Modified: httpd/httpd/branches/2.4.x/test/travis_run_linux.sh
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/test/travis_run_linux.sh?rev=1900805&r1=1900804&r2=1900805&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/test/travis_run_linux.sh (original)
+++ httpd/httpd/branches/2.4.x/test/travis_run_linux.sh Wed May 11 08:20:43 2022
@@ -62,7 +62,13 @@ if test -v TEST_MOD_TLS; then
     git checkout tags/$RUSTLS_VERSION
     # force an update to cbindgen as focal seems to deliver v0.12.1
     # always something changes with rust/cargo every few weeks, sigh.
+    RUSTC_VERSION=`rustc --version`
+    CBINDGEN_INSTALLED_VERSION=`cbindgen --version`
     cargo install --force cbindgen
+    CBINDGEN_LOCAL_VERSION=`"${HOME}"/.cargo/bin/cbindgen --version`
+    echo "building rustls-ffi: RUSTC='${RUSTC_VERSION}', "\
+        "SYSTEM CBINDGEN='${CBINDGEN_INSTALLED_VERSION}'"\
+        "LOCAL CBINDGEN='${CBINDGEN_LOCAL_VERSION}'"
     PATH="${HOME}/.cargo/bin:${PATH}" make install DESTDIR="$PREFIX"
   popd
   CONFIG="$CONFIG --with-tls --with-rustls=$PREFIX"



Re: svn commit: r1900805 - /httpd/httpd/branches/2.4.x/test/travis_run_linux.sh

Posted by Ruediger Pluem <rp...@apache.org>.

On 5/11/22 10:20 AM, icing@apache.org wrote:
> Author: icing
> Date: Wed May 11 08:20:43 2022
> New Revision: 1900805
> 
> URL: http://svn.apache.org/viewvc?rev=1900805&view=rev
> Log:
>   *) test: log rustc and cbindget versions used to build rustls-ffi
>      to speed up analysis of any problems in the future.
> 
> 

Doesn't this need to get forward ported to trunk as well?

Regards

RĂ¼diger