Skip to content

Commit

Permalink
Remove retries mechanism in workflow setup
Browse files Browse the repository at this point in the history
  • Loading branch information
bonigarcia committed Feb 27, 2025
1 parent 37ac17d commit 0ebc4d1
Showing 1 changed file with 8 additions and 18 deletions.
26 changes: 8 additions & 18 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,10 @@ jobs:
if: matrix.os == 'ubuntu-latest'
env:
WDM_DOCKERRECORDINGOUTPUT: /tmp/video
uses: nick-fields/[email protected]
with:
timeout_minutes: 30
max_attempts: 2
command: |
mkdir $WDM_DOCKERRECORDINGOUTPUT
sudo chown 1200:1201 $WDM_DOCKERRECORDINGOUTPUT
mvn -B test -Dtest=!Record*
run: |
mkdir $WDM_DOCKERRECORDINGOUTPUT
sudo chown 1200:1201 $WDM_DOCKERRECORDINGOUTPUT
mvn -B test -Dtest=!Record*
- name: Install browsers in Mac
if: matrix.os == 'macos-latest'
run: |
Expand All @@ -52,18 +48,12 @@ jobs:
"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge" -version
- name: Run tests on Mac
if: matrix.os == 'macos-latest'
uses: nick-fields/[email protected]
with:
timeout_minutes: 30
max_attempts: 2
command: mvn -B test -Dtest=!Docker*,!Record*,!DisplayLogsChromeTest,!GatherLogsChromeTest
run: |
mvn -B test -Dtest=!Docker*,!Record*,!DisplayLogsChromeTest,!GatherLogsChromeTest
- name: Run tests on Windows
if: matrix.os == 'windows-latest'
uses: nick-fields/[email protected]
with:
timeout_minutes: 30
max_attempts: 2
command: mvn -B test -Dtest=!Docker*
run: |
mvn -B test -Dtest=!Docker*
- name: Upload analysis to SonarCloud
if: success() && matrix.os == 'ubuntu-latest' && matrix.java == '17' && !contains(github.ref, 'pull')
run: >
Expand Down

0 comments on commit 0ebc4d1

Please sign in to comment.