File tree Expand file tree Collapse file tree 1 file changed +2
-24
lines changed Expand file tree Collapse file tree 1 file changed +2
-24
lines changed Original file line number Diff line number Diff line change 4
4
5
5
jobs :
6
6
build :
7
- runs-on : ubuntu-latest
7
+ runs-on : ubuntu-22.04
8
8
steps :
9
9
- name : Checkout code
10
10
uses : actions/checkout@v3
13
13
uses : actions/setup-java@v1
14
14
with :
15
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
-
16
+
39
17
- name : Run build
40
18
run : ./gradlew build
41
19
You can’t perform that action at this time.
0 commit comments