We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03cfecd commit e6ff4e2Copy full SHA for e6ff4e2
.github/workflows/docs.yml
@@ -253,7 +253,7 @@ jobs:
253
254
255
builder-docs_experimental:
256
- name: Docs Root Deployer
+ name: Docs Experimental Deployer
257
runs-on: ubuntu-20.04
258
steps:
259
- uses: actions/checkout@v4
patches/curl_stfp_patcher
@@ -27,10 +27,11 @@
27
#This script patches curl to enable native sftp support
28
29
sudo apt-get purge curl -y;
30
+sudo apt-get install openssl libssl-dev
31
wget -q https://curl.haxx.se/download/curl-"$CURL_VERSION".tar.gz
32
tar xf curl-"$CURL_VERSION".tar.gz
33
cd curl-"$CURL_VERSION" || exit
-./configure --with-libssh2
34
+./configure --with-libssh2 --with-openssl
35
make -s -j$(getconf _NPROCESSORS_ONLN)
36
sudo -s make install
37
sudo ldconfig
0 commit comments