From: Stefan Eissing Date: Wed, 11 May 2022 08:20:43 +0000 (+0000) Subject: *) test: log rustc and cbindget versions used to build rustls-ffi X-Git-Tag: 2.4.54-rc1-candidate~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0cb4b33d7056559ae4f72c06bae2f6188a42b115;p=thirdparty%2Fapache%2Fhttpd.git *) test: log rustc and cbindget versions used to build rustls-ffi to speed up analysis of any problems in the future. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1900805 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh index 2e2d6c74750..877a4732cfd 100755 --- a/test/travis_run_linux.sh +++ b/test/travis_run_linux.sh @@ -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"