Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/run-tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ concurrency:
jobs:
tck-test:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [17, 21, 25]
steps:
- name: Checkout a2a-java
uses: actions/checkout@v4
Expand All @@ -37,10 +40,10 @@ jobs:
repository: a2aproject/a2a-tck
path: tck/a2a-tck
ref: ${{ env.TCK_VERSION }}
- name: Set up JDK 17
uses: actions/setup-java@v4
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v5
with:
java-version: '17'
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
cache: maven
- name: check java_home
Expand Down
25 changes: 25 additions & 0 deletions extras/queue-manager-replicated/tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,31 @@

</dependencies>

<profiles>
<profile>
<id>java24-exclude-vertx-incompatible-tests</id>
<activation>
<jdk>[24,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>--add-opens java.base/java.lang=ALL-UNNAMED</argLine>
<excludes>
<!-- TODO: Remove this profile when Quarkus is updated to a version using Vert.x 4.6.0+.
These tests are excluded on Java 24+ due to a Vert.x ServiceLoader incompatibility with Quarkus streaming.
Current Quarkus versions (e.g., 3.28.x) use Vert.x 4.5.x, which is not fully compatible with Java 24+. -->
<exclude>**/KafkaReplicationIntegrationTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
<plugins>
<plugin>
Expand Down