"Created by snbot" #2807
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: aop qpid-jms 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@v2 | |
# with: | |
# distribution: 'temurin' | |
# java-version: 17 | |
# | |
# - name: clean disk | |
# if: steps.docs.outputs.changed_only == 'no' | |
# run: | | |
# df -h | |
# sudo swapoff /swapfile | |
# sudo rm -rf /swapfile /usr/share/dotnet /usr/local/lib/android /opt/ghc | |
# sudo apt clean | |
# docker rmi $(docker images -q) -f | |
# df -h | |
# | |
# - 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: test jms_1_1 | |
# run: mvn test -DfailIfNoTests=false -pl tests-qpid-jms-client | |
# | |
# - name: package surefire artifacts | |
# if: failure() | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: my-artifact | |
# path: tests-qpid-jms-client/target/surefire-reports/ # or path/to/artifact |