Do not test on Java 22 #259
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 RabbitMQ latest alphas | |
on: | |
schedule: | |
- cron: '0 4 * * *' | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
rabbitmq-image: [ 'pivotalrabbitmq/rabbitmq:v3.12.x-otp-max-bazel', 'pivotalrabbitmq/rabbitmq:main-otp-max-bazel' ] | |
name: Test against ${{ matrix.rabbitmq-image }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK for compilation | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
cache: 'maven' | |
- name: Show version | |
run: ./mvnw --version | |
- name: Compile | |
run: ./mvnw clean test-compile --no-transfer-progress | |
- name: Show version | |
run: ./mvnw --version | |
- name: Start RabbitMQ | |
run: ci/start-broker.sh | |
env: | |
RABBITMQ_IMAGE: ${{ matrix.rabbitmq-image }} | |
- name: Configure broker | |
run: HOP_RABBITMQCTL=DOCKER:rabbitmq ci/before-build.sh | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '21' | |
cache: 'maven' | |
- name: Show version | |
run: ./mvnw --version | |
- name: Test | |
run: ./mvnw -DskipBytecodeCheck test --no-transfer-progress | |
- name: Stop broker | |
run: docker stop rabbitmq && docker rm rabbitmq |