Skip to content

Commit e6ff4e2

Browse files
committed
Update docs workflow and curl patch script
- Rename 'Docs Root Deployer' job to 'Docs Experimental Deployer' in `docs.yml` workflow - Enhance `curl_stfp_patcher` script: - Add installation of `openssl` and `libssl-dev` - Configure curl build with OpenSSL support
1 parent 03cfecd commit e6ff4e2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ jobs:
253253

254254

255255
builder-docs_experimental:
256-
name: Docs Root Deployer
256+
name: Docs Experimental Deployer
257257
runs-on: ubuntu-20.04
258258
steps:
259259
- uses: actions/checkout@v4

patches/curl_stfp_patcher

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@
2727
#This script patches curl to enable native sftp support
2828

2929
sudo apt-get purge curl -y;
30+
sudo apt-get install openssl libssl-dev
3031
wget -q https://curl.haxx.se/download/curl-"$CURL_VERSION".tar.gz
3132
tar xf curl-"$CURL_VERSION".tar.gz
3233
cd curl-"$CURL_VERSION" || exit
33-
./configure --with-libssh2
34+
./configure --with-libssh2 --with-openssl
3435
make -s -j$(getconf _NPROCESSORS_ONLN)
3536
sudo -s make install
3637
sudo ldconfig

0 commit comments

Comments
 (0)