Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GHA] Try to test with maven 4 alpha 8 #668

Merged
merged 2 commits into from
Nov 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/it-maven-4.0.0.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Java Integration Tests Maven 4.0.0-alpha-4
name: Java Integration Tests Maven 4.0.0-alpha-8

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
name: Integration Tests Maven 4.0.0-alpha-4
name: Integration Tests Maven 4.0.0-alpha-8

steps:
- uses: actions/checkout@v4
Expand All @@ -14,9 +14,9 @@ jobs:
with:
java-version: 21
distribution: zulu
- name: Load Maven 4.0.0-alpha-4
run: ./mvnw -B -V org.apache.maven.plugins:maven-wrapper-plugin:3.2.0:wrapper -Dmaven=4.0.0-alpha-4 --no-transfer-progress
- name: Load Maven 4.0.0-alpha-8
run: ./mvnw -B -V org.apache.maven.plugins:maven-wrapper-plugin:3.2.0:wrapper -Dmaven=4.0.0-alpha-8 --no-transfer-progress
- name: Build Setup
run: ./mvnw -B -V clean install -Dlicense.skip=true -Dmaven.min-version=4.0.0-alpha-4 --no-transfer-progress
run: ./mvnw -B -V clean install -Dlicense.skip=true -Dmaven.min-version=4.0.0-alpha-8 --no-transfer-progress
- name: Integration Test with Maven
run: ./mvnw -B -V -DtestSrc=remote -Prun-its clean install -Dinvoker.parallelThreads=4 -Dlicense.skip=true -Dmaven.min-version=4.0.0-alpha-4 --no-transfer-progress
run: ./mvnw -B -V -DtestSrc=remote -Prun-its clean install -Dinvoker.parallelThreads=4 -Dlicense.skip=true -Dmaven.min-version=4.0.0-alpha-8 --no-transfer-progress
Loading