We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85550e6 commit cecbe9bCopy full SHA for cecbe9b
npm/ci-requirements.sh
@@ -44,5 +44,18 @@ popd &>/dev/null;
44
echo "Installing dependencies required for tests in codegens/csharp-restsharp"
45
sudo apt-get install -y mono-complete
46
47
+echo "Installing curl v7.68"
48
+ sudo apt-get install -y libssl-dev autoconf libtool make
49
+ wget https://curl.haxx.se/download/curl-7.68.0.zip
50
+ unzip curl-7.68.0.zip
51
+ pushd ./curl-7.68.0 &>/dev/null
52
+ ./buildconf
53
+ ./configure --with-ssl
54
+ make
55
+ sudo make install
56
+ sudo cp /usr/local/bin/curl /usr/bin/curl
57
+ sudo ldconfig
58
+ popd &>/dev/null
59
+
60
echo "Installing dependencies required for tests in codegens/shell-httpie"
61
sudo apt-get install httpie
0 commit comments