Skip to content

Commit 3b7d886

Browse files
authored
Update buildLinux64.yml
1 parent 9ce25aa commit 3b7d886

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/buildLinux64.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,28 @@ jobs:
1414
with:
1515
java-version: 17
1616

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+
1739
- name: Run build
1840
run: ./gradlew build
1941

0 commit comments

Comments
 (0)