Test against supported Java versions #721
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: Checkout tls-gen | |
uses: actions/checkout@v4 | |
with: | |
repository: rabbitmq/tls-gen | |
path: './tls-gen' | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.version }} | |
cache: 'maven' | |
- name: Start broker | |
run: ci/start-broker.sh | |
- name: Display Java version | |
run: ./mvnw --version | |
- name: Test | |
run: | | |
./mvnw verify -Drabbitmqctl.bin=DOCKER:rabbitmq \ | |
-Dca.certificate=./tls-gen/basic/result/ca_certificate.pem \ | |
-Dclient.certificate=./tls-gen/basic/result/client_$(hostname)_certificate.pem \ | |
-Dclient.key=./tls-gen/basic/result/client_$(hostname)_key.pem \ | |
-Dnet.bytebuddy.experimental=true -Djacoco.skip=true -Dspotbugs.skip=true | |
- name: Stop broker | |
run: docker stop rabbitmq && docker rm rabbitmq |