This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/karaf-decanter.git
The following commit(s) were added to refs/heads/main by this push:
new 1cb084e9 Create CI profile to exclude itests problematic on CI
1cb084e9 is described below
commit 1cb084e9a2e3114d58f7afcc70d6c063dcbe81fc
Author: JB Onofré <[email protected]>
AuthorDate: Thu Feb 6 15:15:29 2025 +0100
Create CI profile to exclude itests problematic on CI
---
.github/workflows/build.yml | 2 +-
itest/pom.xml | 22 ++++++++++++++++++++++
pom.xml | 4 ++--
3 files changed, 25 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 7e58206d..4929147d 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -43,4 +43,4 @@ jobs:
- name: Building
run: mvn -U -B -e clean install -DskipTests -Prat
- name: Tests
- run: mvn -B -fae -e test -Ptest
+ run: mvn -B -fae -e test -Pci
diff --git a/itest/pom.xml b/itest/pom.xml
index 4b130447..4bf5fe98 100644
--- a/itest/pom.xml
+++ b/itest/pom.xml
@@ -246,4 +246,26 @@
</plugins>
</build>
+ <profiles>
+ <profile>
+ <id>ci</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <!-- TODO these itests are problematic on CI,
see https://github.com/apache/karaf-decanter/issues/369 -->
+ <exclude>**/OshiCollectorTest.java</exclude>
+
<exclude>**/Log4jSocketCollectorTest.java</exclude>
+ <exclude>**/SocketCollectorTest.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
</project>
diff --git a/pom.xml b/pom.xml
index a3e00f18..fd983ca4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -206,8 +206,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.9.0</version>
<configuration>
- <source>1.8</source>
- <target>1.8</target>
+ <source>11</source>
+ <target>11</target>
</configuration>
</plugin>
<plugin>