Skip to content

Commit d703cdf

Browse files
committed
Use 'mvn install' in CI to support archetype integration tests
The archetype integration tests generate a project that depends on the SDK artifacts being available in the local Maven repository. Using 'install' instead of 'verify' ensures artifacts are installed before the archetype tests run.
1 parent 459eaaf commit d703cdf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
distribution: 'temurin'
3232
cache: maven
3333
- name: Build with Maven
34-
run: mvn -B verify --file pom.xml
34+
run: mvn -B install --file pom.xml

.github/workflows/pr-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ jobs:
5252
distribution: 'temurin'
5353
cache: maven
5454
- name: Build with Maven
55-
run: mvn -B verify --file pom.xml
55+
run: mvn -B install --file pom.xml

0 commit comments

Comments
 (0)