From: Neil Horman Date: Tue, 1 Apr 2025 17:16:04 +0000 (-0400) Subject: Temporarily disable gost-engine tests in ci X-Git-Tag: openssl-3.0.17~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27a8c5f5744891cd714e3a2ae0c64a9e83645488;p=thirdparty%2Fopenssl.git Temporarily disable gost-engine tests in ci We need to temporarily disable this as we have a build break in CI: https://github.com/openssl/openssl/actions/runs/14192630435 Its occuring because gost-engine depends on libprov, which requires a minimum version cmake-3.0. The update of github runners to cmake-4.0 causes a bail out as cmake 4.0 no longers supports cmake 3.0 syntax. Libprov is fixed now, but gost-engine needs to update its libprov submodule, and then we need to update the gost-engine submodule. Until thats done (which may take days), we should disable the gost-engine external tests Reviewed-by: Paul Yang Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/27234) (cherry picked from commit db9771b5a056d939b6112cdc099fbf4f86d184ee) --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7aca544f850..d80b3c915e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -397,8 +397,8 @@ jobs: run: ./config --banner=Configured --strict-warnings --debug no-afalgeng enable-rc5 enable-md2 enable-ssl3 enable-ssl3-method enable-weak-ssl-ciphers enable-zlib enable-ec_nistp_64_gcc_128 enable-external-tests no-fips && perl configdata.pm --dump - name: make run: make -s -j4 - - name: test external gost-engine - run: make test TESTS="test_external_gost_engine" +# - name: test external gost-engine +# run: make test TESTS="test_external_gost_engine" - name: test external krb5 run: make test TESTS="test_external_krb5"