Commit 0a99c3e9df for openssl.org

commit 0a99c3e9df51414a01188a2d18b20f744a93efa4
Author: Stanislav Zidek <szidek@redhat.com>
Date:   Tue Jan 6 17:58:01 2026 +0100

    interop tests: update

    * simplified specfile
    * newer tests
    * update to Fedora-43

    Signed-off-by: Stanislav Zidek <szidek@redhat.com>

    Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
    Reviewed-by: Tomas Mraz <tomas@openssl.org>
    MergeDate: Mon Feb  9 10:00:14 2026
    (Merged from https://github.com/openssl/openssl/pull/29559)

diff --git a/.github/workflows/interop-tests.yml b/.github/workflows/interop-tests.yml
index 623659b99a..4a9bab031f 100644
--- a/.github/workflows/interop-tests.yml
+++ b/.github/workflows/interop-tests.yml
@@ -16,7 +16,7 @@ jobs:
     if: github.repository == 'openssl/openssl'
     runs-on: ubuntu-22.04
     container:
-      image: docker.io/fedora:40
+      image: docker.io/fedora:43
       options: --sysctl net.ipv6.conf.lo.disable_ipv6=0
     timeout-minutes: 90
     strategy:
@@ -33,21 +33,21 @@ jobs:
         run: export
       - name : Install needed tools
         run: |
-          dnf -y install perl gcc rpmdevtools dnf-utils make tmt-all beakerlib \
-                 fips-mode-setup crypto-policies-scripts
+          dnf -y install perl gcc make \
+                 rpmdevtools dnf-utils \
+                 tmt-all beakerlib \
+                 crypto-policies-scripts
       - name: install interop tests
         run: |
           cd ${GITHUB_WORKSPACE}
-          git clone --branch=openssl-v0.1 --depth=1 https://gitlab.com/redhat-crypto/tests/interop.git
+          git clone --branch=openssl-v0.2 --depth=1 https://gitlab.com/redhat-crypto/tests/interop.git
       - name: build openssl as an rpm
         run: |
           mkdir -p /build/SPECS && cd /build && echo -e "%_topdir /build\n%_lto_cflags %{nil}" >~/.rpmmacros && rpmdev-setuptree
           cd /build && cp ${GITHUB_WORKSPACE}/interop/openssl/openssl.spec SPECS/ && \
           cd SPECS/ && source ${GITHUB_WORKSPACE}/VERSION.dat && \
-          sed -i "s/soversion 3/soversion $SHLIB_VERSION/;s/^Version: .*\$/Version: $MAJOR.$MINOR.$PATCH/" openssl.spec && \
-          sed -i "/^%attr.*_libdir.*engines-/ d" openssl.spec && \
-          sed -i 's/^Release: .*$/Release: dev/' openssl.spec && \
-          sed -i "/^%{_bindir}\/c_rehash$/ d" openssl.spec
+          sed -i "s/SOVERSION/$SHLIB_VERSION/" openssl.spec && \
+          sed -i "s/^Version: .*\$/Version: $MAJOR.$MINOR.$PATCH/" openssl.spec
           yum-builddep -y /build/SPECS/openssl.spec # just for sure nothing is missing
           mkdir -p /build/SOURCES
           tar --transform "s/^__w\/openssl\/openssl/openssl-$MAJOR.$MINOR.$PATCH/" -czf /build/SOURCES/openssl-$MAJOR.$MINOR.$PATCH.tar.gz "$GITHUB_WORKSPACE"