Skip to content

Commit 94aae34

Browse files
committed
fix: ci error
1 parent 46025e7 commit 94aae34

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

tools/github-actions/build-saa/action.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ description: Install host system dependencies
1818
runs:
1919
using: composite
2020
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
2626
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 ..

0 commit comments

Comments
 (0)