Verify Staged Artifacts #18
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: Verify Staged Artifacts | |
on: | |
workflow_dispatch: | |
inputs: | |
releaseVersion: | |
description: 'Release version like 5.0.0-M1, 5.1.0-RC1, 5.2.0 etc.' | |
required: true | |
type: string | |
jobs: | |
verify-staged-with-samples: | |
runs-on: ubuntu-latest | |
services: | |
rabbitmq: | |
image: rabbitmq:management | |
env: | |
RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS: -rabbitmq_stream advertised_host localhost | |
ports: | |
- 5672:5672 | |
- 15672:15672 | |
- 5552:5552 | |
steps: | |
- name: Wait RabbitMQ is Up | |
run: docker exec ${{ job.services.rabbitmq.id }} rabbitmqctl wait --pid 1 --timeout 60 | |
- name: Enable RabbitMQ Stream Plugin | |
run: docker exec ${{ job.services.rabbitmq.id }} rabbitmq-plugins enable rabbitmq_stream | |
- name: Checkout Samples Repo | |
uses: actions/checkout@v4 | |
with: | |
repository: spring-projects/spring-amqp-samples | |
ref: ${{ github.ref_name }} | |
show-progress: false | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: 'maven' | |
- uses: jfrog/setup-jfrog-cli@v4 | |
env: | |
JF_ENV_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }} | |
- name: Configure JFrog Cli | |
run: jf mvnc --repo-resolve-releases=libs-release-staging --repo-resolve-snapshots=snapshot | |
- name: Verify samples against staged release | |
run: | | |
mvn versions:set -DnewVersion=${{ inputs.releaseVersion }} -DgenerateBackupPoms=false -DprocessAllModules=true -B -ntp | |
jf mvn verify -B -ntp | |
- name: Capture Test Results | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-results | |
path: '**/target/surefire-reports/**/*.*' | |
retention-days: 1 |