Skip to content

Commit

Permalink
Githubactions: CentOS7: Install OpenSSL 3 from source
Browse files Browse the repository at this point in the history
  • Loading branch information
aveenismail committed Sep 28, 2024
1 parent 026b779 commit eb6a969
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build_centos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ jobs:
- name: install OpenSSL
run: |
wget https://github.com/openssl/openssl/releases/download/OpenSSL_1_1_1w/openssl-1.1.1w.tar.gz
tar xfz openssl-1.1.1w.tar.gz
cd openssl-1.1.1w
#./Configure --prefix=/usr/local/ssl --openssldir=/usr/local/ssl '-Wl,--enable-new-dtags,-rpath,$(LIBRPATH)'
#wget https://github.com/openssl/openssl/releases/download/OpenSSL_1_1_1w/openssl-1.1.1w.tar.gz
#tar xfz openssl-1.1.1w.tar.gz
#cd openssl-1.1.1w
wget https://github.com/openssl/openssl/releases/download/openssl-3.3.2/openssl-3.3.2.tar.gz
tar xfz openssl-3.3.2.tar.gz
cd openssl-3.3.2
./config --prefix=$GITHUB_WORKSPACE/openssl --openssldir=$GITHUB_WORKSPACE/openssl
make
make install
Expand Down

0 comments on commit eb6a969

Please sign in to comment.