Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
rajeev-0 committed Oct 14, 2024
1 parent f842061 commit 50973da
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/version_compatability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
run: |
git clone https://github.com/openssl/openssl.git --branch ${{ matrix.branch }}
cd openssl
./config --banner=Configured --strict-warnings --prefix=/usr/local/openssl --openssldir=/usr/local/openssl/ssl shared zlib
./config --banner=Configured --strict-warnings --prefix=/usr/local/${{ matrix.branch }} --openssldir=/usr/local/${{ matrix.branch }}/ssl shared zlib
make -s -j4
sudo make install_sw install_ssldirs
cd ..
echo "OPENSSL_DIR=/usr/local/openssl" >> $GITHUB_ENV
echo "OPENSSL_ROOT_DIR=/usr/local/openssl" >> $GITHUB_ENV
echo "OPENSSL_INCLUDE_DIR=/usr/local/openssl/include/openssl" >> $GITHUB_ENV
echo "OPENSSL_LIBRARIES=/usr/local/openssl/lib64" >> $GITHUB_ENV
echo "PATH=$PATH:/usr/local/openssl/bin" >> $GITHUB_ENV
echo "OPENSSL_DIR=/usr/local/${{ matrix.branch }}" >> $GITHUB_ENV
echo "OPENSSL_ROOT_DIR=/usr/local/${{ matrix.branch }}" >> $GITHUB_ENV
echo "OPENSSL_INCLUDE_DIR=/usr/local/${{ matrix.branch }}/include" >> $GITHUB_ENV
echo "OPENSSL_LIBRARIES=/usr/local/${{ matrix.branch }}/lib64" >> $GITHUB_ENV
echo "PATH=$PATH:/usr/local/${{ matrix.branch }}/bin" >> $GITHUB_ENV
- name: cmake
run: |
cmake .
Expand Down

0 comments on commit 50973da

Please sign in to comment.