We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a8c618 commit 893685fCopy full SHA for 893685f
.github/workflows/build.yml
@@ -45,8 +45,13 @@ jobs:
45
${{ runner.os }}-maven-
46
- name: JDK 8
47
if: matrix.jdk == '8'
48
- run: mvn -B clean package -P travis jacoco:report -Dmaven.gitcommitid.skip=true
49
- - name: JDK 11
+ uses: nick-fields/retry@v3
+ with:
50
+ timeout_minutes: 3
51
+ max_attempts: 3
52
+ retry_wait_seconds: 1
53
+ command: mvn -B clean package -P travis jacoco:report -Dmaven.gitcommitid.skip=true
54
+ - name: JDK 11
55
if: matrix.jdk == '11'
56
run: mvn -B clean compile -Dmaven.gitcommitid.skip=true
57
- name: JDK 17
0 commit comments