This is an automated email from the ASF dual-hosted git repository.
tibordigana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
The following commit(s) were added to refs/heads/master by this push:
new fe0b3cb [GH] Using JDK 1.8 and 'mvn clean' in order to prevent from
errors 'java.nio.Buffer java.nio.ByteBuffer.clear() has been changed to
java.nio.ByteBuffer java.nio.ByteBuffer.clear()'
fe0b3cb is described below
commit fe0b3cbf41f5b9c6db66380bfeefac15bfa75b72
Author: tibordigana <[email protected]>
AuthorDate: Sun Sep 27 20:18:47 2020 +0200
[GH] Using JDK 1.8 and 'mvn clean' in order to prevent from errors
'java.nio.Buffer java.nio.ByteBuffer.clear() has been changed to
java.nio.ByteBuffer java.nio.ByteBuffer.clear()'
---
.github/workflows/maven-windows-it1.yml | 6 +++---
.github/workflows/maven-windows-it2.yml | 8 ++++----
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/maven-windows-it1.yml
b/.github/workflows/maven-windows-it1.yml
index 17164ed..2f71a9f 100644
--- a/.github/workflows/maven-windows-it1.yml
+++ b/.github/workflows/maven-windows-it1.yml
@@ -36,13 +36,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v1
- - name: Set up JDK 14
+ - name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
- java-version: 14
+ java-version: 1.8
- name: Build with Maven
- run: mvn install -e -B -V -nsu --no-transfer-progress -P run-its
"-Dit.test=**/jiras/*IT*.java,TestMethodPatternIT,TestMultipleMethodPatternsIT,TestMultipleMethodPatternsTestNGIT"
+ run: mvn clean install -e -B -V -nsu --no-transfer-progress -P run-its
"-Dit.test=**/jiras/*IT*.java,TestMethodPatternIT,TestMultipleMethodPatternsIT,TestMultipleMethodPatternsTestNGIT"
- name: Upload artifact surefire-its
uses: actions/upload-artifact@v2-preview
diff --git a/.github/workflows/maven-windows-it2.yml
b/.github/workflows/maven-windows-it2.yml
index 3e1f409..25b5f2e 100644
--- a/.github/workflows/maven-windows-it2.yml
+++ b/.github/workflows/maven-windows-it2.yml
@@ -36,16 +36,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v1
- - name: Set up JDK 14
+ - name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
- java-version: 14
+ java-version: 1.8
- name: Build with Maven with Install
- run: mvn install -e -B -V -nsu --no-transfer-progress -DskipTests
+ run: mvn clean install -e -B -V -nsu --no-transfer-progress -DskipTests
- name: Build with Maven without Unit Tests
- run: mvn install -e -B -V -nsu --no-transfer-progress -rf
:surefire-its -P run-its
"-Dit.test=!**/jiras/*IT*.java,!TestMethodPatternIT,!TestMultipleMethodPatternsIT,!TestMultipleMethodPatternsTestNGIT"
+ run: mvn clean install -e -B -V -nsu --no-transfer-progress -rf
:surefire-its -P run-its
"-Dit.test=!**/jiras/*IT*.java,!TestMethodPatternIT,!TestMultipleMethodPatternsIT,!TestMultipleMethodPatternsTestNGIT"
- name: Upload artifact surefire-its
uses: actions/upload-artifact@v2-preview