Skip to content

Commit 25b57d5

Browse files
committed
local installs
1 parent b64c0f6 commit 25b57d5

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@ jobs:
9090
java-version: 11
9191
cache: maven
9292
- run: java -version
93+
- name: Install sdk-platform-modules to local Maven repository
94+
run: |
95+
mvn install -B -ntp -T 1C -DskipTests -Dclirr.skip -Dcheckstyle.skip -Denforcer.skip
96+
working-directory: sdk-platform-java
9397
- name: Install Maven modules to local Maven repository
9498
run: |
9599
mvn install -B -ntp -T 1C -DskipTests -Dclirr.skip -Dcheckstyle.skip
@@ -104,6 +108,10 @@ jobs:
104108
java-version: 11
105109
distribution: temurin
106110
cache: maven
111+
- name: Install sdk-platform-modules to local Maven repository
112+
run: |
113+
mvn install -B -ntp -T 1C -DskipTests -Dclirr.skip -Dcheckstyle.skip -Denforcer.skip
114+
working-directory: sdk-platform-java
107115
- name: Install Maven modules to local Maven repository
108116
run: |
109117
mvn install -B -ntp -T 1C -DskipTests -Dclirr.skip -Dcheckstyle.skip -Denforcer.skip

.github/workflows/sdk-platform-java-ci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
- main
55
pull_request:
66
name: sdk-platform-java-ci
7+
working-directory: sdk-platform-java
78
jobs:
89
filter:
910
runs-on: ubuntu-latest

.github/workflows/sdk-platform-java-java_compatibility_check.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,10 @@ jobs:
4242
java-version: 17
4343
distribution: temurin
4444
cache: maven
45-
- name: Install Maven modules to local Maven repository
45+
- name: Install sdk-platform-modules to local Maven repository
4646
run: |
4747
mvn install -B -ntp -T 1C -DskipTests -Dclirr.skip -Dcheckstyle.skip -Denforcer.skip
48+
working-directory: sdk-platform-java
4849
- name: Check Java 8 compatibility for class files
4950
shell: bash
5051
run: |
@@ -60,3 +61,4 @@ jobs:
6061
fi
6162
done
6263
echo "All class files are compatible with Java 8."
64+
working-directory: sdk-platform-java

0 commit comments

Comments
 (0)