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 9ce25aa commit 3b7d886Copy full SHA for 3b7d886
.github/workflows/buildLinux64.yml
@@ -14,6 +14,28 @@ jobs:
14
with:
15
java-version: 17
16
17
+ - name: Install specific libcurl version
18
+ run: |
19
+ # Install dependencies
20
+ sudo apt-get update
21
+ sudo apt-get install -y build-essential libssl-dev
22
+
23
+ # Define the version you want to install
24
+ CURL_VERSION=7.80.0
25
26
+ # Download and extract the source code
27
+ curl -LO https://curl.se/download/curl-${CURL_VERSION}.tar.gz
28
+ tar -xzf curl-${CURL_VERSION}.tar.gz
29
+ cd curl-${CURL_VERSION}
30
31
+ # Configure, build, and install
32
+ ./configure
33
+ make
34
+ sudo make install
35
36
+ # Ensure the new libcurl is used
37
+ sudo ldconfig
38
39
- name: Run build
40
run: ./gradlew build
41
0 commit comments