Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,9 @@ stage('Configure') {
pipelineTriggers(
// HSEARCH-3417: do not add snapshotDependencies() here, this was known to cause problems.
[
issueCommentTrigger('.*test this please.*')
issueCommentTrigger('.*test this please.*'),
// Run every week Sunday @ 2 AM
cron('0 2 * * 0')
]
+ helper.generateUpstreamTriggers()
),
Expand Down
4 changes: 0 additions & 4 deletions ci/dependency-update/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ def withMavenWorkspace(Closure body) {

pipeline {
agent none
triggers {
// Run at least once per week, in case of snapshot updates.
cron '@weekly'
}
options {
buildDiscarder logRotator(daysToKeepStr: '10', numToKeepStr: '3')
disableConcurrentBuilds(abortPrevious: true)
Expand Down
4 changes: 2 additions & 2 deletions integrationtest/performance/orm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-search-infinispan</artifactId>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-directory-provider</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -831,6 +831,11 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-directory-provider</artifactId>
<version>${version.org.infinispan}</version>
</dependency>

<dependency>
<groupId>org.hibernate</groupId>
Expand Down Expand Up @@ -1622,7 +1627,7 @@
<configuration>
<outputDirectory>${project.build.directory}/</outputDirectory>
<includeGroupIds>${project.groupId}</includeGroupIds>
<includeArtifacIds>hibernate-search-sharedtestresources</includeArtifacIds>
<includeArtifactIds>hibernate-search-sharedtestresources</includeArtifactIds>
<includeTypes>zip</includeTypes>
<excludeTransitive>true</excludeTransitive>
</configuration>
Expand Down