Skip to content

Update version_compatability.yml #6

Update version_compatability.yml

Update version_compatability.yml #6

# GitHub Actions for genCMPClient
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) Siemens AG, 2021-2024
name: OpenSSL compatabilty
on: push
jobs:
openssl_version:
strategy:
fail-fast: false
matrix:
branch: [openssl-3.0]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build openssl
run: |
git clone https://github.com/openssl/openssl.git --branch ${{ matrix.branch }}
cd openssl
./config --banner=Configured --strict-warnings
make -s -j4
sudo make install
cd ..
- name: cmake
run: |
cmake .
make
mkdir build
cd build
cmake -S .. -B .
cmake --build .
cmake -DCMAKE_BUILD_TYPE=Release ..
make clean build
cd ..
mkdir build-with-libcmp
cd build-with-libcmp
USE_LIBCMP=1 cmake -S .. -B .
make clean build
DESTDIR=tmp make install uninstall
make deb