Skip to content

Commit 8580417

Browse files
authored
Update build lifecycle to install and don't ignore failed tests (#185) (#186)
* Update use install and don't ignore failed tests * Exclude examples that don't work with JDK 25 from latest Java build
1 parent c7f10da commit 8580417

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,4 +197,4 @@ jobs:
197197
- name: Maven build
198198
run: etc/scripts/build.sh
199199
env:
200-
MAVEN_ARGS: -pl !examples/integrations/micronaut/data
200+
MAVEN_ARGS: -pl !examples/integrations/micronaut/data,!examples/integrations/microstream/greetings-se,!examples/integrations/microstream/greetings-mp

etc/scripts/build.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,4 @@ mvn ${MAVEN_ARGS} --version
4747
# shellcheck disable=SC2086
4848
mvn -B ${MAVEN_ARGS} \
4949
-f "${WS_DIR}"/pom.xml \
50-
-Dmaven.test.failure.ignore=true \
51-
clean package
50+
clean install

0 commit comments

Comments
 (0)