Skip to content

Bump pulsar-io-amqp-1-0 version to 3.0.6.6 #2124

Bump pulsar-io-amqp-1-0 version to 3.0.6.6

Bump pulsar-io-amqp-1-0 version to 3.0.6.6 #2124

Workflow file for this run

name: pulsar io qpid-jms basic test
on:
pull_request:
branches:
- master
- branch-*
push:
branches:
- master
- branch-*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: License check
run: mvn license:check
- name: Build with Maven skipTests
run: mvn clean install -DskipTests
- name: Style check
run: mvn checkstyle:check
- name: Spotbugs check
run: mvn spotbugs:check
- name: io-amqp1_0-impl test after build
run: mvn test -DfailIfNoTests=false -pl io-amqp1_0-impl
- name: package surefire artifacts
if: failure()
run: |
rm -rf artifacts
mkdir artifacts
find . -type d -name "*surefire*" -exec cp --parents -R {} artifacts/ \;
zip -r artifacts.zip artifacts
- uses: actions/upload-artifact@master
name: upload surefire-artifacts
if: failure()
with:
name: surefire-artifacts
path: artifacts.zip