-
-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathJenkinsfile
More file actions
27 lines (27 loc) · 663 Bytes
/
Jenkinsfile
File metadata and controls
27 lines (27 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
pipeline {
agent {
label 'Worker&&Containers'
}
tools {
jdk 'OpenJDK 17 Latest'
maven 'Apache Maven 3.9'
}
options {
disableConcurrentBuilds()
}
environment {
TESTCONTAINERS_RYUK_DISABLED = 'true'
}
stages {
stage('Build Hibernate Search Demos') {
steps {
sh "mvn -f hibernate-search -B -q clean package -DskipTests=true -Dtest.containers.run.skip=true"
}
}
stage('Test Hibernate Search Demos') {
steps {
sh "mvn -f hibernate-search -B verify -Dstart-containers"
}
}
}
}