There was an error while loading. Please reload this page.
2 parents c4ecf68 + a5f659a commit e3bb7d3Copy full SHA for e3bb7d3
1 file changed
.github/workflows/maven.yml
@@ -8,11 +8,17 @@ jobs:
8
runs-on: ubuntu-latest
9
10
steps:
11
- - uses: actions/checkout@v1
12
- - name: Set up JDK 1.8
13
- uses: actions/setup-java@v1
+ - uses: actions/checkout@v4
14
with:
15
- java-version: 1.8
+ submodules: recursive
+ - name: Set up JDK 11
+ uses: actions/setup-java@v4
16
+ with:
17
+ distribution: temurin
18
+ java-version: '11'
19
+ cache: maven
20
+ - name: Install utils submodule
21
+ run: mvn -B install -DskipTests --file utils/pom.xml
22
- name: Install depended jars
23
run: ./lib_install.sh
24
- name: Build with Maven
0 commit comments