Mailing List Archive

svn commit: r1900875 - /httpd/httpd/trunk/test/travis_run_linux.sh
Author: icing
Date: Sat May 14 09:09:01 2022
New Revision: 1900875

URL: http://svn.apache.org/viewvc?rev=1900875&view=rev
Log:
* test: upgrade rustls-ffi version to 0.9.0 which
gets rid of the dependency on cbindgen.


Modified:
httpd/httpd/trunk/test/travis_run_linux.sh

Modified: httpd/httpd/trunk/test/travis_run_linux.sh
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/test/travis_run_linux.sh?rev=1900875&r1=1900874&r2=1900875&view=diff
==============================================================================
--- httpd/httpd/trunk/test/travis_run_linux.sh (original)
+++ httpd/httpd/trunk/test/travis_run_linux.sh Sat May 14 09:09:01 2022
@@ -55,15 +55,13 @@ fi
# build the version we want from source
if test -v TEST_MOD_TLS; then
RUSTLS_HOME="$HOME/build/rustls-ffi"
- RUSTLS_VERSION="v0.8.2"
+ RUSTLS_VERSION="v0.9.0"
git clone https://github.com/rustls/rustls-ffi.git "$RUSTLS_HOME"
pushd "$RUSTLS_HOME"
+ # since v0.9.0, there is no longer a dependency on cbindgen
git fetch origin
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.
- cargo install --force cbindgen
- PATH="${HOME}/.cargo/bin:${PATH}" make install DESTDIR="$PREFIX"
+ make install DESTDIR="$PREFIX"
popd
CONFIG="$CONFIG --with-tls --with-rustls=$PREFIX"
fi