Skip to content

Commit 4528ad1

Browse files
authored
Update buildLinuxArm64.yml
1 parent 3b7d886 commit 4528ad1

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

.github/workflows/buildLinuxArm64.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build LinuxArm64
1+
name: Build Linux64
22
on:
33
workflow_dispatch:
44

@@ -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)