Skip to content

Commit

Permalink
ARTEMIS-4360 Make compatibility-tests opt in with -Pcompatibility-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
clebertsuconic committed Jul 12, 2023
1 parent a3c0125 commit c9f2f53
Show file tree
Hide file tree
Showing 3 changed files with 427 additions and 404 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# By setting anything to org.apache.activemq.artemis.core.io.aio.AIOSequentialFileFactory.DISABLED we are disabling libaio loading on the testsuite
- name: Fast Tests
run: |
mvn -s .github/maven-settings.xml -Dorg.apache.activemq.artemis.core.io.aio.AIOSequentialFileFactory.DISABLED=AnythingNotNull -Pfast-tests install
mvn -s .github/maven-settings.xml -Dorg.apache.activemq.artemis.core.io.aio.AIOSequentialFileFactory.DISABLED=AnythingNotNull -Pfast-tests -Pcompatibility-tests install
- name: Clean Up Before Caching
run: |
Expand Down
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1283,7 +1283,6 @@
<skipJoramTests>false</skipJoramTests>
<skipIntegrationTests>false</skipIntegrationTests>
<skipIsolatedIntegrationTests>false</skipIsolatedIntegrationTests>
<skipCompatibilityTests>false</skipCompatibilityTests>
<skipSmokeTests>false</skipSmokeTests>
<skipTimingTests>true</skipTimingTests>
<skipRestTests>false</skipRestTests>
Expand All @@ -1294,6 +1293,12 @@
<skipLeakTests>false</skipLeakTests>
</properties>
</profile>
<profile>
<id>compatibility-tests</id>
<properties>
<skipCompatibilityTests>false</skipCompatibilityTests>
</properties>
</profile>
<profile>
<!-- This will represent a subset of the tests
This is used on PR checks -->
Expand Down

0 comments on commit c9f2f53

Please sign in to comment.