mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-16 08:05:05 +00:00
Add more tags to build scans
This commit is contained in:
parent
6f640e1d6d
commit
bc14ea52eb
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -124,6 +124,10 @@ stage('Build') {
|
||||
state[buildEnv.tag]['additionalOptions'] = state[buildEnv.tag]['additionalOptions'] +
|
||||
" -Ptest.jdk.launcher.args='${buildEnv.testJdkLauncherArgs}'"
|
||||
}
|
||||
if ( buildEnv.node ) {
|
||||
state[buildEnv.tag]['additionalOptions'] = state[buildEnv.tag]['additionalOptions'] +
|
||||
" -Pci.node=${buildEnv.node}"
|
||||
}
|
||||
state[buildEnv.tag]['containerName'] = null;
|
||||
stage('Checkout') {
|
||||
checkout scm
|
||||
|
@ -50,6 +50,11 @@ gradleEnterprise {
|
||||
tag "JOB ${System.getenv('JOB_NAME')}"
|
||||
}
|
||||
tag "JDK ${JavaVersion.current().toString()}"
|
||||
value 'database', rootProject.hasProperty( 'db' ) ? rootProject.properties.db : 'h2'
|
||||
String db = rootProject.hasProperty( 'db' ) ? rootProject.properties.db : 'h2'
|
||||
tag db
|
||||
value 'database', db
|
||||
if ( rootProject.hasProperty( 'ci.node' ) ) {
|
||||
tag rootProject.property('ci.node')
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user