From: Tomas Mraz Date: Thu, 28 Jul 2022 09:40:36 +0000 (+0200) Subject: test_external_oqsprovider: Use working checkout of liboqs X-Git-Tag: openssl-3.2.0-alpha1~2320 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e32ca79e33546682a5a75bb41b9d6dcd732787a;p=thirdparty%2Fopenssl.git test_external_oqsprovider: Use working checkout of liboqs Fixes #18898 Reviewed-by: Matt Caswell Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/18899) --- diff --git a/test/recipes/95-test_external_oqsprovider_data/oqsprovider.sh b/test/recipes/95-test_external_oqsprovider_data/oqsprovider.sh index fb4635dc089..318567c0f76 100755 --- a/test/recipes/95-test_external_oqsprovider_data/oqsprovider.sh +++ b/test/recipes/95-test_external_oqsprovider_data/oqsprovider.sh @@ -50,8 +50,9 @@ if [ ! -d $SRCTOP/oqs-provider/oqs ]; then # https://github.com/open-quantum-safe/liboqs/wiki/Customizing-liboqs ( cd $SRCTOP/oqs-provider \ - && git clone --depth 1 --branch main https://github.com/open-quantum-safe/liboqs.git \ + && git clone --shallow-since=2022-07-01 --branch main https://github.com/open-quantum-safe/liboqs.git \ && cd liboqs \ + && git checkout 2c687b122084902ab287bb4a5497872e06cf2bf4 \ && mkdir build \ && cd build \ && cmake -DOQS_ENABLE_SIG_RAINBOW=OFF -DCMAKE_INSTALL_PREFIX=$SRCTOP/oqs-provider/oqs .. \