Skip to content

Commit 22b47d7

Browse files
authored
Update buildLinuxArm64.yml
1 parent 38ae77b commit 22b47d7

File tree

1 file changed

+2
-24
lines changed

1 file changed

+2
-24
lines changed

.github/workflows/buildLinuxArm64.yml

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44

55
jobs:
66
build:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-22.04
88
steps:
99
- name: Checkout code
1010
uses: actions/checkout@v3
@@ -13,29 +13,7 @@ jobs:
1313
uses: actions/setup-java@v1
1414
with:
1515
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-
16+
3917
- name: Run build
4018
run: ./gradlew build
4119

0 commit comments

Comments
 (0)