This is an automated email from the ASF dual-hosted git repository. mattsicker pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit 334c568a2866239094345d1becd57079c3f7bf05 Author: Matt Sicker <[email protected]> AuthorDate: Sun May 1 20:19:57 2022 -0500 Enable parallel builds in CI Signed-off-by: Matt Sicker <[email protected]> --- .github/workflows/linux.yml | 1 + .github/workflows/macos.yml | 1 + .github/workflows/windows.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 3004dbb0db..00e5604795 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -31,5 +31,6 @@ jobs: run: | ./mvnw \ --show-version --batch-mode --errors --no-transfer-progress \ + --threads 1C \ -DtrimStackTrace=false \ -Dlog4j2.junit.fileCleanerSleepPeriodMillis=1000 diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 74b8e7a86a..9a326fd04b 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -31,5 +31,6 @@ jobs: run: | ./mvnw \ --show-version --batch-mode --errors --no-transfer-progress \ + --threads 1C \ -DtrimStackTrace=false \ -Dlog4j2.junit.fileCleanerSleepPeriodMillis=1000 diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index d13018c55c..7b863fcee3 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -31,5 +31,6 @@ jobs: run: | ./mvnw \ --show-version --batch-mode --errors --no-transfer-progress \ + --threads 1C \ -DtrimStackTrace=false \ -Dlog4j2.junit.fileCleanerSleepPeriodMillis=1000
