summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2022-07-28 11:40:36 +0200
committerTomas Mraz <tomas@openssl.org>2022-11-11 10:04:11 +0100
commit9a937ef47316eb39586ef3b721116c56263da08b (patch)
tree31e6d332bcf8257858db549bd11389774ee7f12a /test
parentc635400be1f57cdc5b01828a57e59d589673fab8 (diff)
test_external_oqsprovider: Use working checkout of liboqs
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) (cherry picked from commit 7e32ca79e33546682a5a75bb41b9d6dcd732787a)
Diffstat (limited to 'test')
-rwxr-xr-xtest/recipes/95-test_external_oqsprovider_data/oqsprovider.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/recipes/95-test_external_oqsprovider_data/oqsprovider.sh b/test/recipes/95-test_external_oqsprovider_data/oqsprovider.sh
index fb4635dc08..318567c0f7 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 .. \