|
9 | 9 | // Also make sure to update the parameters in the parameters {} section of the pipeline. |
10 | 10 | Map settings() { |
11 | 11 | switch (env.DEPENDENCY_UPDATE_NAME) { |
12 | | - case 'orm7.1': |
| 12 | + case 'orm': |
13 | 13 | return [ |
14 | 14 | updateProperties: ['version.org.hibernate.orm'], |
15 | 15 | onlyRunTestDependingOn: ['hibernate-search-mapper-orm'], |
16 | | - // just rebuild all dependants since ORM7 upgrade will affect all mappers |
| 16 | + // just rebuild all dependants since ORM upgrade will affect all mappers |
17 | 17 | additionalMavenArgs: '-am' |
18 | 18 | ] |
19 | 19 | case 'lucene9.12': |
@@ -142,7 +142,7 @@ pipeline { |
142 | 142 | parameters { |
143 | 143 | // choice parameter doesn't have a default, but the first value should be treated as a default, if it wasn't specified manually. |
144 | 144 | // Make sure tp update axis and settings() when adding new choice parameter. |
145 | | - choice(name: 'UPDATE_JOB', choices: ['all', 'orm7.1', 'lucene9.12','lucene9', 'lucene10', 'lucene-future', 'elasticsearch-current', 'elasticsearch-next'], description: 'Select which update jobs to run. `All` will include all configured update jobs.') |
| 145 | + choice(name: 'UPDATE_JOB', choices: ['all', 'orm', 'lucene9.12','lucene9', 'lucene10', 'lucene-future', 'elasticsearch-current', 'elasticsearch-next'], description: 'Select which update jobs to run. `All` will include all configured update jobs.') |
146 | 146 | string(name: 'ORM_REPOSITORY', defaultValue: '', description: 'Git URL to Hibernate ORM repository. If provided, Hibernate ORM will be built locally. Works only in pair with ORM_BRANCH. Provide an http repository URL rather than an ssh one.') |
147 | 147 | string(name: 'ORM_BRANCH', defaultValue: '', description: 'Hibernate ORM branch to build from. If provided, Hibernate ORM will be built locally. Works only in pair with ORM_REPOSITORY. Either a pull request ID or a branch name should be provided, but not both at the same time. Use branch if you want to build from a fork repository.') |
148 | 148 | string(name: 'ORM_PULL_REQUEST_ID', defaultValue: '', description: 'Hibernate ORM pull request id to build from. If provided, Hibernate ORM will be built locally. Works only in pair with ORM_REPOSITORY. Either a pull request ID or a branch name should be provided, but not both at the same time.') |
@@ -243,7 +243,7 @@ pipeline { |
243 | 243 | name 'DEPENDENCY_UPDATE_NAME' |
244 | 244 | // NOTE: Remember to update the settings() method above when changing this. |
245 | 245 | // And also add a new choice parameter in the parameters {} section of the pipeline |
246 | | - values 'orm7.1', 'lucene9.12','lucene9', 'lucene10', 'lucene-future', 'elasticsearch-current', 'elasticsearch-next' |
| 246 | + values 'orm', 'lucene9.12','lucene9', 'lucene10', 'lucene-future', 'elasticsearch-current', 'elasticsearch-next' |
247 | 247 | } |
248 | 248 | } |
249 | 249 | stages { |
|
0 commit comments