Skip to content

Commit 0738e78

Browse files
fix(examples): fix action workflow run failed (#1502)
1 parent 5c0a517 commit 0738e78

5 files changed

Lines changed: 211 additions & 155 deletions

File tree

.github/workflows/maven-ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ jobs:
127127
if: runner.os == 'Windows'
128128
run: |
129129
# -T1: single-threaded build so reactor order is respected (see Linux step).
130-
& "~\.mvnd\bin\mvnd.cmd" -B -T1 clean verify
130+
# -Dmvnd.maxLostKeepAlive=120: avoid StaleAddressException on long javadoc phases (mvnd#161).
131+
& "~\.mvnd\bin\mvnd.cmd" -B -T1 "-Dmvnd.maxLostKeepAlive=120" clean verify
131132
132133
- name: Upload coverage reports to Codecov
133134
if: runner.os == 'Linux'

0 commit comments

Comments
 (0)