File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
tools/github-actions/build-saa Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -18,16 +18,16 @@ description: Install host system dependencies
18
18
runs :
19
19
using : composite
20
20
steps :
21
- - uses : actions/setup-java@v4
22
- with :
23
- java-version : ' 17 '
24
- distribution : ' temurin '
25
- cache : ' maven'
21
+ - name : " Setup Java "
22
+ shell : " bash "
23
+ run : |
24
+ sudo apt-get update
25
+ sudo apt-get install -y openjdk-17-jdk maven
26
26
27
- - uses : actions/checkout@v4
28
- with :
29
- repository : ' alibaba/spring-ai-alibaba '
30
- ref : ' main'
31
-
32
- - shell : bash
33
- run : mvn install -DskipTests
27
+ - name : " Clone and build spring-ai-alibaba "
28
+ shell : " bash "
29
+ run : |
30
+ git clone -b main https://github.com/alibaba/spring-ai-alibaba.git
31
+ cd spring-ai-alibaba
32
+ mvn install -DskipTests
33
+ cd ..
You can’t perform that action at this time.
0 commit comments