Skip to content

Commit

Permalink
remove test_Mock
Browse files Browse the repository at this point in the history
  • Loading branch information
rajeev-0 committed Jan 22, 2025
1 parent ca1c45a commit dbe13fe
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/OpenSSL_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ jobs:
run: |
git clone https://github.com/openssl/openssl.git --branch ${{ matrix.branch }} --depth 1
cd openssl
./config --banner=Configured --debug --strict-warnings --prefix=/usr/local/${{ matrix.branch }} shared zlib
./config --banner=Configured --debug --strict-warnings --prefix=../${{ matrix.branch }} shared zlib
make -s -j4
sudo make install_sw install_ssldirs
cd ..
- name: set OpenSSL env
run: |
echo "OPENSSL_DIR=/usr/local/${{ matrix.branch }}" >> $GITHUB_ENV
echo "OPENSSL_LIB=/usr/local/${{ matrix.branch }}/lib64" >> $GITHUB_ENV
echo "/usr/local/${{ matrix.branch }}/bin" >> "$GITHUB_PATH"
echo "LD_LIBRARY_PATH=/usr/local/${{ matrix.branch }}/lib64:$LD_LIBRARY_PATH" >> "$GITHUB_ENV"
echo "OPENSSL_DIR=./${{ matrix.branch }}" >> $GITHUB_ENV
echo "OPENSSL_LIB=./${{ matrix.branch }}/lib64" >> $GITHUB_ENV
echo "./${{ matrix.branch }}/bin" >> "$GITHUB_PATH"
echo "LD_LIBRARY_PATH=./${{ matrix.branch }}/lib64:$LD_LIBRARY_PATH" >> "$GITHUB_ENV"
- name: make
run: |
make -f Makefile_v1
Expand All @@ -51,13 +51,7 @@ jobs:
USE_LIBCMP=1 STATIC_LIBCMP=1 make -f Makefile_v1
./cmpClient -help
make -f Makefile_v1 clean
- name: test_Mock
# Testing only with latest branch as it is consuming resources from github runner.
# OpenSSL-3.0 is tested in build.yml as it is default version in Ubuntu 22.04.
if: matrix.branch == 'openssl-3.4'
run: |
USE_LIBCMP=1 make -f Makefile_v1 test_Mock
make -f Makefile_v1 clean_all
- name: cmake
run: |
cmake .
Expand Down

0 comments on commit dbe13fe

Please sign in to comment.