[maven-release-plugin] prepare release 0.15.8 #3425
Workflow file for this run
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: Java CI with Maven | |
on: | |
push: | |
branches: [master, 0.14] | |
tags: ["*"] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build on ${{ matrix.os.name }} | |
strategy: | |
matrix: | |
os: | |
- {name: "windows-latest", build-options: "\"-Dquarkus.container-image.build=false\" -pl '!horreum-client, !horreum-integration-tests' -DskipITs -DskipTests"} | |
- {name: "ubuntu-latest", build-options: ""} | |
env: | |
ENVIRONMENT: CI | |
runs-on: ${{ matrix.os.name }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Reclaim Disk Space | |
run: .github/scripts/ci-prerequisites.sh | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: 17 | |
- name: Cache Maven packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
# required to install Hunter | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- name: Install Hunter | |
run: | | |
pip --version | |
pip install git+https://github.com/datastax-labs/hunter@5c0b480815a281322ebbbf157f70fc785212a892 | |
pip freeze | grep hunter | |
- name: Maven Version | |
run: mvn --version | |
- name: Build and Test | |
run: mvn clean install -B --file pom.xml ${{ matrix.os.build-options }} -P ci | |
- name: Check uncommitted changes | |
if: matrix.os.name == 'ubuntu-latest' | |
run: | | |
clean=$(git status --porcelain) | |
if [[ -z "$clean" ]]; then | |
echo "Empty git status --porcelain: $clean" | |
else | |
echo "Uncommitted file changes detected: $clean" | |
git diff | |
exit 1 | |
fi | |
- name: Upload artifact for failed workflow | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test logs | |
path: | | |
*/target/surefire-reports/* | |
test-suite/target/hyperfoil/*.log |