]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
test_external_oqsprovider: Use working checkout of liboqs
authorTomas Mraz <tomas@openssl.org>
Thu, 28 Jul 2022 09:40:36 +0000 (11:40 +0200)
committerTomas Mraz <tomas@openssl.org>
Thu, 28 Jul 2022 13:22:13 +0000 (15:22 +0200)
Fixes #18898

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/18899)

test/recipes/95-test_external_oqsprovider_data/oqsprovider.sh

index fb4635dc089bf346b607d0f8459c167e79467a08..318567c0f764a28d1d7a07007b68c0bc41627895 100755 (executable)
@@ -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 .. \