This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch karaf-4.4.x
in repository https://gitbox.apache.org/repos/asf/karaf.git
The following commit(s) were added to refs/heads/karaf-4.4.x by this push:
new 3c56714bf4 [karaf-4.4.x] Add integration tests execution in the CI
(#2079)
3c56714bf4 is described below
commit 3c56714bf4b9fe556ebd2d53d4066f98073f0e13
Author: JB Onofré <[email protected]>
AuthorDate: Sun Oct 12 09:07:08 2025 +0200
[karaf-4.4.x] Add integration tests execution in the CI (#2079)
* Add integration tests execution in the CI
* Skip E2ETest in interceptor impl
---
.github/workflows/build.yml | 8 +++++---
services/interceptor/impl/pom.xml | 5 +++++
2 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e8b5f283d4..8ebe9763b9 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -33,13 +33,15 @@ jobs:
contents: read
steps:
- - uses: actions/checkout@v4
+ - name: Checkout
+ uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
+ cache: 'maven'
- name: Build
- run: mvn -U -B -e clean install -DskipTests -Prat
+ run: mvn -U -B -e clean install -Prat -DskipTests "-Dinvoker.skip=true"
- name: Test
- run: mvn -B -e -fae test -Ptest
+ run: mvn -U -B -e clean install -Ptest
diff --git a/services/interceptor/impl/pom.xml
b/services/interceptor/impl/pom.xml
index c7ca030657..ed6c4dd2c3 100644
--- a/services/interceptor/impl/pom.xml
+++ b/services/interceptor/impl/pom.xml
@@ -221,9 +221,14 @@
<goal>test</goal>
</goals>
<configuration>
+ <!--
<includes>
<include>**/E2E*</include>
</includes>
+ -->
+ <excludes>
+ <exclude>**/E2E*</exclude>
+ </excludes>
</configuration>
</execution>
</executions>