Skip to content

Commit d7e0e1c

Browse files
committed
chore: disable SearXNG ITs in Github Action
1 parent f37c0b0 commit d7e0e1c

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ jobs:
7676
run: |
7777
mvn -B -U verify \
7878
-DskipXinferenceITs \
79+
-DskipSearXNGITs \
7980
-Dgib.disable=false -Dgib.referenceBranch=__branch_before \
8081
${{ matrix.mvn_opts }}
8182

.github/workflows/nightly_jdk17.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
mvn -B -U verify \
3939
--fail-at-end \
4040
-DskipXinferenceITs \
41+
-DskipSearXNGITs \
4142
-Dmaven.test.failure.ignore=true \
4243
${{ matrix.mvn_opts }}
4344

.github/workflows/nightly_jdk21.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
mvn -B -U verify \
3939
--fail-at-end \
4040
-DskipXinferenceITs \
41+
-DskipSearXNGITs \
4142
-Dmaven.test.failure.ignore=true \
4243
${{ matrix.mvn_opts }}
4344

web-search-engines/langchain4j-community-web-search-engine-searxng/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
</license>
2424
</licenses>
2525

26+
<properties>
27+
<skipSearXNGITs>false</skipSearXNGITs>
28+
</properties>
29+
2630
<dependencies>
2731

2832
<dependency>
@@ -84,4 +88,16 @@
8488

8589
</dependencies>
8690

91+
<build>
92+
<plugins>
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-failsafe-plugin</artifactId>
96+
<configuration>
97+
<skipTests>${skipSearXNGITs}</skipTests>
98+
</configuration>
99+
</plugin>
100+
</plugins>
101+
</build>
102+
87103
</project>

0 commit comments

Comments
 (0)