Skip to content

Commit

Permalink
(chores) camel-etcd3: skip tests on s390x and ppc64le
Browse files Browse the repository at this point in the history
Recent etcd3 seems very unstable on these platforms and have been causing crashes and failures
  • Loading branch information
orpiske committed Nov 11, 2024
1 parent 6433f23 commit 499bb1f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/camel-etcd3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,13 @@
<label>database</label>
<supportLevel>Preview</supportLevel>

<!-- Etcd3 container is not available on these platforms -->
<!-- Etcd3 container is not available or unstable on these platforms -->
<skipTests.aarch64>true</skipTests.aarch64>
<skipITs.aarch64>true</skipITs.aarch64>
<skipTests.s390x>true</skipTests.s390x>
<skipITs.s390x>true</skipITs.s390x>
<skipTests.ppc64le>true</skipTests.ppc64le>
<skipITs.ppc64le>true</skipITs.ppc64le>
</properties>

<dependencies>
Expand Down

0 comments on commit 499bb1f

Please sign in to comment.