Skip to content

Commit

Permalink
chore(tests/qa): ignore removed fields and add h2 dependency in 7.19 …
Browse files Browse the repository at this point in the history
…fixture

* clirr-ignore: ignore removed jpa fields
* 7.19 test fixture: add h2 dependency for jpa in memory database
* ci: run api-compatibility stage with default-build label

Related to camunda#3447
  • Loading branch information
yanavasileva authored Jun 13, 2023
1 parent ebe765c commit 37c84c5
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ pipeline {
stage('engine-api-compatibility') {
when {
expression {
cambpmIsNotFailedStageType(failedStageTypes, 'engine-unit') && cambpmWithLabels()
cambpmIsNotFailedStageType(failedStageTypes, 'engine-unit') && cambpmWithLabels('default-build')
}
}
steps {
Expand Down
15 changes: 15 additions & 0 deletions engine/.clirr-jenkins-ignore.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,19 @@
<method>*ELContext*</method>
<to>**</to>
</difference>

<!-- 6001: removed field -->
<!-- removed feature: handling JPA entities as variables-->
<difference>
<differenceType>6001</differenceType>
<className>org/camunda/bpm/engine/ProcessEngineConfiguration</className>
<field>jpa**</field>
</difference>
<!-- 7002: removed method -->
<!-- removed feature: handling JPA entities as variables-->
<difference>
<differenceType>7002</differenceType>
<className>org/camunda/bpm/engine/ProcessEngineConfiguration</className>
<method>**Jpa**</method>
</difference>
</differences>
5 changes: 5 additions & 0 deletions qa/test-db-instance-migration/test-fixture-719/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
</dependency>

<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 37c84c5

Please sign in to comment.