From e892beb765defa4ef89abb0c2ce99ab46cbe0b57 Mon Sep 17 00:00:00 2001 From: Jeremy Landis Date: Mon, 25 Dec 2023 23:26:29 -0500 Subject: [PATCH 1/2] [GHA] increase threads from 4 to 8 --- .github/workflows/it-maven-3.3.9.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.3.9.yaml b/.github/workflows/it-maven-3.3.9.yaml index 04467f61..d979ad29 100644 --- a/.github/workflows/it-maven-3.3.9.yaml +++ b/.github/workflows/it-maven-3.3.9.yaml @@ -19,4 +19,4 @@ jobs: - name: Build Setup run: ./mvnw -B -V clean install -Dlicense.skip=true -Dmaven.min-version=3.3.9 - name: Integration Test with Maven - run: ./mvnw -B -V -DtestSrc=remote -Prun-its clean install -Dinvoker.parallelThreads=4 -Dlicense.skip=true -Dmaven.min-version=3.3.9 + run: ./mvnw -B -V -DtestSrc=remote -Prun-its clean install -Dinvoker.parallelThreads=8 -Dlicense.skip=true -Dmaven.min-version=3.3.9 diff --git a/.github/workflows/it-maven-4.0.0.yaml b/.github/workflows/it-maven-4.0.0.yaml index c5fe2b39..434c1aaf 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-alpha-10 --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-10 --no-transfer-progress + run: ./mvnw -B -V -DtestSrc=remote -Prun-its clean install -Dinvoker.parallelThreads=8 -Dlicense.skip=true -Dmaven.min-version=4.0.0-alpha-10 --no-transfer-progress diff --git a/.github/workflows/it.yaml b/.github/workflows/it.yaml index c8e3f7d4..da8d05c5 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=4 -Dlicense.skip=true --no-transfer-progress + run: ./mvnw -B -V -DtestSrc=remote -Prun-its clean install -Dinvoker.parallelThreads=8 -Dlicense.skip=true --no-transfer-progress From 94c8ccf9ba861a337537ad2b0b1c4c7e03541991 Mon Sep 17 00:00:00 2001 From: Jeremy Landis Date: Mon, 25 Dec 2023 23:39:38 -0500 Subject: [PATCH 2/2] [GHA] Drop coverity to java 17 as they don't support 21 yet (actually 20 but we block 20 now) --- .github/workflows/coverity.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverity.yaml b/.github/workflows/coverity.yaml index 341327f2..1fc4a102 100644 --- a/.github/workflows/coverity.yaml +++ b/.github/workflows/coverity.yaml @@ -14,7 +14,7 @@ jobs: - name: Set up JDK uses: actions/setup-java@v4 with: - java-version: 21 + java-version: 17 distribution: 'zulu' - name: Analyze with Coverity run: |