Skip to content

Commit 8c752b4

Browse files
committed
Remove retries in CI
1 parent bf06d8a commit 8c752b4

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,11 @@ jobs:
3232
run: Xvfb $DISPLAY &
3333
- name: Run ${{ matrix.project }} tests with Maven
3434
if: matrix.build-tool == 'mvn'
35-
uses: nick-invision/[email protected]
36-
with:
37-
timeout_minutes: 30
38-
max_attempts: 3
39-
command: |
40-
cd selenium-webdriver-${{ matrix.project }}
41-
mvn test -Dtest=!*Edge*,!*CrossBrowser*
35+
run: |
36+
cd selenium-webdriver-${{ matrix.project }}
37+
mvn test -Dtest=!*Edge*,!*CrossBrowser*
4238
- name: Run ${{ matrix.project }} tests with Gradle
4339
if: matrix.build-tool == 'gradle'
44-
uses: nick-invision/[email protected]
45-
with:
46-
timeout_minutes: 30
47-
max_attempts: 3
48-
command: |
49-
cd selenium-webdriver-${{ matrix.project }}
50-
./gradlew test -PexcludeTests=**/*Edge*,**/*CrossBrowser*
40+
run: |
41+
cd selenium-webdriver-${{ matrix.project }}
42+
./gradlew test -PexcludeTests=**/*Edge*,**/*CrossBrowser*

0 commit comments

Comments
 (0)