Commit 81867b36 authored by Volkan Yazıcı's avatar Volkan Yazıcı Committed by Volkan Yazici
Browse files

Continue on error in GitHub Actions workflow build step.

parent d92dad36
Showing with 4 additions and 1 deletion
+4 -1
name: Maven name: CI
on: [push] on: [push]
...@@ -44,6 +44,7 @@ jobs: ...@@ -44,6 +44,7 @@ jobs:
- name: Build with Maven (Linux) - name: Build with Maven (Linux)
if: runner.os == 'Linux' if: runner.os == 'Linux'
continue-on-error: true
run: ./mvnw -V -B --no-transfer-progress -e -DtrimStackTrace=false -Dmaven.test.failure.ignore=true -Dsurefire.rerunFailingTestsCount=1 --global-toolchains .github/workflows/maven-toolchains.xml verify run: ./mvnw -V -B --no-transfer-progress -e -DtrimStackTrace=false -Dmaven.test.failure.ignore=true -Dsurefire.rerunFailingTestsCount=1 --global-toolchains .github/workflows/maven-toolchains.xml verify
- name: Inspect environment (Windows) - name: Inspect environment (Windows)
...@@ -52,6 +53,7 @@ jobs: ...@@ -52,6 +53,7 @@ jobs:
- name: Build with Maven (Windows) - name: Build with Maven (Windows)
if: runner.os == 'Windows' if: runner.os == 'Windows'
continue-on-error: true
run: ./mvnw -V -B --no-transfer-progress -e "-DtrimStackTrace=false" "-Dmaven.test.failure.ignore=true" "-Dsurefire.rerunFailingTestsCount=1" "-Dlog4j2.junit.fileCleanerSleepPeriodMillis=1000" --global-toolchains ".github\workflows\maven-toolchains.xml" verify run: ./mvnw -V -B --no-transfer-progress -e "-DtrimStackTrace=false" "-Dmaven.test.failure.ignore=true" "-Dsurefire.rerunFailingTestsCount=1" "-Dlog4j2.junit.fileCleanerSleepPeriodMillis=1000" --global-toolchains ".github\workflows\maven-toolchains.xml" verify
- name: Inspect environment (MacOS) - name: Inspect environment (MacOS)
...@@ -60,6 +62,7 @@ jobs: ...@@ -60,6 +62,7 @@ jobs:
- name: Build with Maven (MacOS) - name: Build with Maven (MacOS)
if: runner.os == 'macOS' if: runner.os == 'macOS'
continue-on-error: true
run: ./mvnw -V -B --no-transfer-progress -e -DtrimStackTrace=false -Dmaven.test.failure.ignore=true -Dsurefire.rerunFailingTestsCount=1 --global-toolchains .github/workflows/maven-toolchains.xml verify run: ./mvnw -V -B --no-transfer-progress -e -DtrimStackTrace=false -Dmaven.test.failure.ignore=true -Dsurefire.rerunFailingTestsCount=1 --global-toolchains .github/workflows/maven-toolchains.xml verify
- name: Publish Test Results - name: Publish Test Results
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment