From 296a9a9021d504440e19f15ab98e28bc2f95f7e1 Mon Sep 17 00:00:00 2001 From: Jeremy Landis Date: Sun, 1 Sep 2024 17:40:53 -0400 Subject: [PATCH] [GHA] Remove extra clean option as not needed --- .github/workflows/it-maven-3.6.3.yaml | 2 +- .github/workflows/it-maven-4.0.0.yaml | 2 +- .github/workflows/it.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/it-maven-3.6.3.yaml b/.github/workflows/it-maven-3.6.3.yaml index 080602458..fe21d7fad 100644 --- a/.github/workflows/it-maven-3.6.3.yaml +++ b/.github/workflows/it-maven-3.6.3.yaml @@ -19,4 +19,4 @@ jobs: - name: Build Setup run: ./mvnw -B -V clean install -Dlicense.skip=true -Dmaven.min-version=3.6.3 --no-transfer-progress - name: Integration Test with Maven - run: ./mvnw -B -V -DtestSrc=remote -Prun-its clean install -Dinvoker.parallelThreads=8 -Dlicense.skip=true -Dmaven.min-version=3.6.3 --no-transfer-progress + run: ./mvnw -B -V -DtestSrc=remote -Prun-its install -Dinvoker.parallelThreads=8 -Dlicense.skip=true -Dmaven.min-version=3.6.3 --no-transfer-progress diff --git a/.github/workflows/it-maven-4.0.0.yaml b/.github/workflows/it-maven-4.0.0.yaml index 1bb435f3c..83b361224 100644 --- a/.github/workflows/it-maven-4.0.0.yaml +++ b/.github/workflows/it-maven-4.0.0.yaml @@ -19,4 +19,4 @@ jobs: - name: Build Setup run: ./mvnw -B -V clean install -Dlicense.skip=true -Dmaven.min-version=4.0.0-beta-3 --no-transfer-progress - name: Integration Test with Maven - run: ./mvnw -B -V -DtestSrc=remote -Prun-its clean install -Dinvoker.parallelThreads=8 -Dlicense.skip=true -Dmaven.min-version=4.0.0-beta-3 --no-transfer-progress + run: ./mvnw -B -V -DtestSrc=remote -Prun-its install -Dinvoker.parallelThreads=8 -Dlicense.skip=true -Dmaven.min-version=4.0.0-beta-3 --no-transfer-progress diff --git a/.github/workflows/it.yaml b/.github/workflows/it.yaml index da8d05c58..f5479662a 100644 --- a/.github/workflows/it.yaml +++ b/.github/workflows/it.yaml @@ -17,4 +17,4 @@ jobs: - name: Build Setup run: ./mvnw -B -V clean install -Dlicense.skip=true --no-transfer-progress - name: Integration Test with Maven - run: ./mvnw -B -V -DtestSrc=remote -Prun-its clean install -Dinvoker.parallelThreads=8 -Dlicense.skip=true --no-transfer-progress + run: ./mvnw -B -V -DtestSrc=remote -Prun-its install -Dinvoker.parallelThreads=8 -Dlicense.skip=true --no-transfer-progress