Test against supported Java versions #753
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test against supported Java versions | |
on: | |
schedule: | |
- cron: '0 4 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
distribution: [ 'temurin' ] | |
version: [ '8', '11', '17', '21', '23', '24-ea' ] | |
include: | |
- distribution: 'semeru' | |
version: '17' | |
name: Test against Java ${{ matrix.distribution }} ${{ matrix.version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.version }} | |
cache: 'maven' | |
- name: Start RabbitMQ application | |
run: ci/start-broker.sh | |
- name: Display Java version | |
run: ./mvnw --version | |
- name: Test | |
run: | | |
./mvnw verify -Drabbitmqctl.bin=DOCKER:rabbitmq --no-transfer-progress \ | |
-Dnet.bytebuddy.experimental=true | |
- name: Stop broker | |
run: docker stop rabbitmq && docker rm rabbitmq |