We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a381e5 commit c41efa5Copy full SHA for c41efa5
Jenkinsfile
@@ -18,7 +18,7 @@ pipeline {
18
}
19
20
stages {
21
- stage("test: baseline (Java 17)") {
+ stage("test: baseline (main)") {
22
when {
23
beforeAgent(true)
24
anyOf {
@@ -70,6 +70,23 @@ pipeline {
70
71
72
73
+ stage("test: baseline (next)") {
74
+ agent {
75
+ label 'data'
76
+ }
77
+ options { timeout(time: 30, unit: 'MINUTES')}
78
+ environment {
79
+ ARTIFACTORY = credentials("${p['artifactory.credentials']}")
80
81
+ steps {
82
+ script {
83
+ docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
84
+ sh 'PROFILE=all-dbs ci/test.sh'
85
+ sh "ci/clean.sh"
86
87
88
89
90
91
92
0 commit comments